-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.68 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
79
80
{
"name": "@rainbowatcher/eslint-config-mono",
"type": "module",
"version": "0.21.1",
"private": true,
"packageManager": "pnpm@10.30.1",
"author": "rainbowatcher <rainbow-w@qq.com>",
"license": "MIT",
"scripts": {
"build": "pnpm -r --sequential build",
"build:only": "pnpm --parallel build:only",
"changelog": "conventional-changelog -si CHANGELOG.md",
"lint": "eslint .",
"prepare": "simple-git-hooks",
"release": "cross-release -r --all -x 'pnpm changelog' && pnpm build && pnpm -r publish",
"test": "vitest",
"typegen": "tsx scripts/typegen.ts",
"typecheck": "tsc --noEmit",
"watch": "pnpm --parallel watch",
"inspect": "eslint-config-inspector --open"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.4.2",
"@eslint/config-inspector": "^1.4.2",
"@rainbowatcher/eslint-config": "workspace:*",
"@rainbowatcher/eslint-config-ignore": "workspace:*",
"@rainbowatcher/eslint-config-js": "workspace:*",
"@rainbowatcher/eslint-config-json": "workspace:*",
"@rainbowatcher/eslint-config-md": "workspace:*",
"@rainbowatcher/eslint-config-prettier": "workspace:*",
"@rainbowatcher/eslint-config-shared": "workspace:*",
"@rainbowatcher/eslint-config-ts": "workspace:*",
"@rainbowatcher/eslint-config-unocss": "workspace:*",
"@rainbowatcher/eslint-config-vue": "workspace:*",
"@types/eslint": "^9.6.1",
"@types/node": "^24.10.13",
"@vitest/ui": "^4.0.18",
"commitlint": "^20.4.2",
"conventional-changelog-cli": "^5.0.0",
"cross-release-cli": "0.5.0",
"dedent": "^1.7.1",
"eslint": "^9.39.3",
"eslint-typegen": "^2.3.1",
"happy-dom": "^20.7.0",
"simple-git-hooks": "^2.13.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"vue": "^3.5.28"
},
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit $1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-enum": [
2,
"always",
[
"all",
"ignore",
"javascript",
"json",
"markdown",
"prettier",
"shared",
"toml",
"typescript",
"unocss",
"vue",
"deps"
]
]
}
}
}