generated from wendraw/starter-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=16.14"
},
"scripts": {
"dev": "pnpm -F playground dev",
"build": "pnpm -r build",
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"check": "tsc --incremental --noEmit",
"publish": "bumpp package.json packages/*/package.json --commit --push --tag && pnpm run build && pnpm -r publish",
"test": "pnpm -r run test",
"test:protocol": "pnpm -C packages/protocol run test:ui",
"preinstall": "npx only-allow pnpm",
"postinstall": "npx simple-git-hooks",
"sizecheck": "npx vite-bundle-visualizer",
"update:dependencies": "taze -r -w"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@iconify-json/ri": "^1.2.0",
"@types/node": "^18.19.48",
"@unocss/reset": "^0.51.13",
"@vitejs/plugin-vue": "^4.6.2",
"@vitest/browser": "^2.0.5",
"@vueuse/core": "^10.11.1",
"bumpp": "^9.5.2",
"chalk": "^5.3.0",
"eslint": "^8.57.0",
"lint-staged": "^15.2.10",
"playwright": "^1.46.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4",
"unocss": "^0.51.13",
"unplugin-auto-import": "^0.17.8",
"vite": "^5.4.2",
"vite-plugin-dts": "^2.3.0",
"vitest": "^2.0.5",
"vue": "^3.5.0",
"vue-tsc": "^1.8.27"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/verifyCommit.mjs",
"pre-push": "pnpm run test"
},
"lint-staged": {
"*": "eslint --fix"
}
}