generated from rainbowatcher/ts-cli-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.66 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
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
81
82
83
84
85
86
{
"name": "cross-release-project",
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.5.2",
"description": "the cross release project",
"author": {
"name": "rainbowatcher",
"email": "rainbow-w@qq.com",
"url": "https://github.com/rainbowatcher"
},
"license": "MIT",
"homepage": "https://github.com/rainbowatcher/cross-release#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rainbowatcher/cross-release.git"
},
"bugs": {
"url": "https://github.com/rainbowatcher/cross-release/issues"
},
"sideEffects": false,
"scripts": {
"build": "pnpm -r build",
"build:watch": "pnpm --parallel build:watch",
"clean": "pnpm --parallel clean",
"coverage": "vitest --coverage",
"dev": "tsx packages/cross-release-cli/src/run.ts",
"lint": "eslint .",
"prepare": "simple-git-hooks",
"start": "node packages/cross-release-cli/bin/cross-release.js",
"release": "pnpm build && pnpm start -ry && pnpm -r publish",
"test": "vitest",
"typecheck": "tsc --noEmit",
"up": "taze -rI"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.7.1",
"@rainbowatcher/eslint-config": "^0.21.1",
"@rainbowatcher/eslint-config-ignore": "^0.21.1",
"@rainbowatcher/eslint-config-js": "^0.21.1",
"@rainbowatcher/eslint-config-json": "^0.21.1",
"@rainbowatcher/eslint-config-md": "^0.21.1",
"@rainbowatcher/eslint-config-prettier": "^0.21.1",
"@rainbowatcher/eslint-config-toml": "^0.21.1",
"@rainbowatcher/eslint-config-ts": "^0.21.1",
"@types/debug": "^4.1.12",
"@types/node": "^22.13.9",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^3.0.7",
"commitlint": "^19.7.1",
"dedent": "^1.5.3",
"eslint": "^9.21.0",
"execa": "^9.5.2",
"isomorphic-git": "^1.29.0",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"taze": "^18.6.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.7"
},
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit $1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"scope-enum": [
2,
"always",
[
"cross-release-cli",
"cross-bump",
"deps"
]
]
},
"cross-release": {
"exclude": [
"fixture"
]
}
}