-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.27 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
{
"name": "@pinia-vue-mini/root",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev:lib": "pnpm run -C packages/pinia-vue-mini dev",
"build:lib": "pnpm run -C packages/pinia-vue-mini build",
"build:playground": "pnpm run -C packages/playground build",
"dev": "chokidar 'packages/pinia-vue-mini/src/**/*' pnpm dev:lib & chokidar 'packages/pinia-vue-mini/dist/**/*' -c 'pnpm build:playground' & chokidar 'packages/playground/src/**/*' -c 'pnpm build:playground'",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"release": "semantic-release"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,html,json,css}": [
"npm run lint:fix",
"git add ."
]
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin": "^2.6.1",
"chokidar-cli": "^3.0.0",
"eslint": "^9.8.0",
"eslint-config-airbe": "1.0.2",
"lint-staged": "^15.2.7",
"semantic-release": "^24.0.0",
"tsup": "^8.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "8.0.0-alpha.62"
}
}