summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorPawel Zelawski <pawel.zelawski@outlook.com>2025-04-10 19:49:10 +0200
committerPawel Zelawski <pawel.zelawski@outlook.com>2025-04-10 19:49:10 +0200
commitd1b3e578cbc778349246822d40c060755f303dd6 (patch)
tree70ba5be34c9a726d696e89c2f14b551b56eb0d1f /package.json
parent4c3a65cc6a3907cbe91593e047ac9af1d2c138c4 (diff)
chore: switch to NPM dependency for digiid-ts and update docs
- Update package.json to use the 'latest' version of 'digiid-ts' from NPM instead of the local file path. - Run 'npm install' to fetch the package from the registry. - Correct the 'dev:backend' and 'dev' scripts in package.json to fix the build process after the dependency update. - Update the repository clone URL in README.md to the correct address.
Diffstat (limited to 'package.json')
-rw-r--r--package.json7
1 files changed, 4 insertions, 3 deletions
diff --git a/package.json b/package.json
index bfd0b66..b760a9d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,7 @@
{
"name": "digiid-ts-demo",
- "version": "1.0.0",
+ "private": true,
+ "version": "0.0.0",
"description": "",
"type": "module",
"scripts": {
@@ -47,11 +48,11 @@
"vite": "^6.2.6"
},
"dependencies": {
- "digiid-ts": "file:/home/zelu/Data/Projects/GitHub/pawelzelawski/digiid-ts",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"qrcode": "^1.5.3",
"react": "^18.3.1",
- "react-dom": "^18.3.1"
+ "react-dom": "^18.3.1",
+ "digiid-ts": "latest"
}
}