-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.98 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "wallets_tool",
"private": true,
"version": "0.4.28",
"type": "module",
"scripts": {
"start": "node scripts/install-deps.cjs && yarn tauri-dev",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"icon": "tauri icon",
"tauri-build": "tauri build",
"tauri-dev": "tauri dev",
"version:update": "node scripts/update-version.js",
"setup": "node scripts/install-deps.cjs",
"check": "yarn tauri-dev --help",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report"
},
"config": {
"database": {
"forceInit": false,
"enableDebugLog": false,
"initSqlPath": "data/public_init.sql"
}
},
"dependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@iconify/vue": "^5.0.0",
"@primevue/themes": "^4.5.4",
"@solana/spl-token": "^0.4.0",
"@solana/web3.js": "^1.91.0",
"@tanstack/vue-virtual": "^3.13.18",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.4",
"@tauri-apps/plugin-updater": "^2.9.0",
"bs58": "^5.0.0",
"ethers": "^6.13.4",
"less": "^4.5.1",
"pinia": "^3.0.4",
"primeicons": "^7.0.0",
"primevue": "^4.5.4",
"qrcode": "^1.5.4",
"rollup-plugin-polyfill-node": "^0.13.0",
"vue": "^3.5.26",
"vue-router": "^4.6.4",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@arco-design/web-vue": "^2.57.0",
"@playwright/test": "^1.57.0",
"@tauri-apps/cli": "^2.9.5",
"@vitejs/plugin-vue": "^6.0.3",
"chalk": "^5.6.2",
"sharp": "^0.34.5",
"terser": "^5.44.1",
"vite": "^7.3.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-tsc": "^3.2.5"
}
}