-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 KB
/
package.json
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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "vite --host",
"start": "node scripts/dev.mjs",
"build-core": "pnpm --dir ./packages/core build",
"build-layout": "pnpm --dir ./packages/layout build",
"build": "npm run build-core && npm run build-layout",
"pub-core": "pnpm --dir ./packages/core pub",
"pub-layout": "pnpm --dir ./packages/layout pub",
"pub": "npm run pub-core && npm run pub-layout",
"build-example": "vue-tsc && vite build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"chokidar": "^3.6.0",
"cross-spawn": "^7.0.3",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"typescript": "^5.5.3",
"vite": "^5.3.2",
"vue-tsc": "^2.0.24"
},
"dependencies": {
"@0x30/vue-navigation": "workspace:*",
"@0x30/vue-navigation-layout": "workspace:*",
"vue": "^3.4.31"
}
}