-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.44 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
69
70
71
72
73
74
75
76
77
78
{
"name": "MetaWeb.World",
"private": true,
"version": "1.0.0",
"description": "Vue 3 + Metalet Wallet + Complete Login/Registration Flow (Reference: IDChat) - Enterprise-grade Web3 DApp",
"type": "module",
"author": "MetaWeb.World",
"license": "MIT",
"scripts": {
"dev": "vite --mode development",
"prod": "vite --mode prod",
"build": "vite build --mode development",
"build:prod": "vite build --mode prod",
"build:check": "vue-tsc -b && vite build",
"preview": "vite preview",
"preinstall": "node scripts/check-node-version.js",
"setup": "node scripts/setup-node.js",
"setup:node": "chmod +x ./scripts/setup-node-environment.sh && ./scripts/setup-node-environment.sh",
"postinstall": "node -v | grep -q v20.19.1 || (echo '⚠️ Node.js 版本不正确,请运行: nvm use 20.19.1' && npm run setup:node)",
"prestart": "./scripts/auto-switch-node.sh",
"prebuild": "./scripts/auto-switch-node.sh",
"pretest": "./scripts/auto-switch-node.sh"
},
"bin": {
"check-node": "./scripts/check-node-version.js"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@tanstack/vue-table": "^8.21.3",
"@types/crypto-js": "^4.2.2",
"@types/lodash": "^4.17.20",
"@vueuse/core": "^13.9.0",
"ai": "^6.0.6",
"axios": "^1.12.2",
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"dexie": "^4.2.1",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"lucide-vue-next": "^0.562.0",
"meta-contract": "^0.4.16",
"motion-v": "^1.7.5",
"nanoid": "^5.1.6",
"pinia": "^3.0.3",
"readline": "^1.3.0",
"reka-ui": "^2.7.0",
"semver": "^7.7.3",
"socket.io-client": "^4.8.3",
"streamdown-vue": "^1.0.29",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"vue": "^3.5.22",
"vue-i18n": "^11.1.12",
"vue-router": "^4.6.3",
"vue-stream-markdown": "^0.3.3"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/tsconfig": "^0.8.1",
"autoprefixer": "^10.4.21",
"node-stdlib-browser": "^1.3.1",
"postcss": "^8.5.6",
"rollup-plugin-polyfill-node": "^0.13.0",
"sass": "^1.93.2",
"tailwindcss": "^3.4.0",
"typescript": "~5.9.3",
"vite": "^7.1.0",
"vite-plugin-vue-devtools": "^8.0.2",
"vue-tsc": "^3.1.0"
},
"engines": {
"node": ">=20.19.1",
"npm": ">=10.0.0"
}
}