-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "kas-will",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Local-first bilingual Kaspa inheritance wallet and covenant desktop app",
"scripts": {
"dev": "concurrently -k -n web,api -c cyan,magenta \"vite --host 127.0.0.1\" \"node --watch server/index.mjs\"",
"build": "vite build",
"start": "node server/index.mjs",
"check": "node scripts/check-syntax.mjs",
"test": "node --test",
"setup:silverc": "node scripts/build-silverc.mjs",
"setup:kascov-preflight": "node scripts/build-kascov-preflight.mjs",
"verify": "npm run check && npm test && npm run build",
"desktop:prepare": "npm run build && node scripts/prepare-desktop-runtime.mjs",
"desktop:dev": "tauri dev",
"desktop:build": "tauri build"
},
"dependencies": {
"@kluster/kaspa-wasm": "2.0.1",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-shell": "^2.3.5",
"dotenv": "^16.6.1",
"express": "^5.1.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.4",
"concurrently": "^9.2.0",
"vite": "^7.0.0"
},
"engines": {
"node": ">=22"
},
"license": "MIT"
}