-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "elegant-router",
"type": "module",
"version": "0.3.8",
"private": true,
"packageManager": "pnpm@9.15.0",
"description": "A plugin to create router elegantly",
"author": {
"name": "Soybean",
"email": "soybeanjs@outlook.com",
"url": "https://github.com/soybeanjs"
},
"license": "MIT",
"homepage": "https://github.com/soybeanjs/elegant-router",
"repository": {
"url": "https://github.com/soybeanjs/elegant-router.git"
},
"bugs": {
"url": "https://github.com/soybeanjs/elegant-router/issues"
},
"scripts": {
"build": "pnpm -r --filter='./packages/*' run build",
"cleanup": "soy cleanup",
"commit": "soy git-commit",
"lint": "eslint . --fix",
"prepare": "pnpm -r run stub && pnpm simple-git-hooks",
"publish-pkg": "pnpm -r publish --access public",
"release": "pnpm soy release",
"stub": "pnpm -r --parallel --filter='./packages/*' run stub",
"typecheck": "tsc --noEmit --skipLibCheck",
"update-pkg": "soy ncu"
},
"devDependencies": {
"@soybeanjs/cli": "1.1.1",
"@soybeanjs/eslint-config": "1.4.3",
"eslint": "9.16.0",
"eslint-plugin-vue": "9.32.0",
"lint-staged": "15.2.11",
"simple-git-hooks": "2.11.1",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vue-eslint-parser": "9.4.3"
},
"simple-git-hooks": {
"commit-msg": "pnpm soy git-commit-verify",
"pre-commit": "pnpm typecheck && pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}