-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.7 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
81
82
83
84
85
86
87
{
"name": "cross-release-project",
"type": "module",
"version": "0.5.0",
"private": true,
"packageManager": "pnpm@10.29.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": "^20.4.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/is-glob": "^4.0.4",
"@types/node": "^25.2.2",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.0.18",
"commitlint": "^20.4.1",
"dedent": "^1.7.1",
"eslint": "^10.0.0",
"execa": "^9.6.1",
"isomorphic-git": "^1.36.3",
"rimraf": "^6.1.2",
"simple-git-hooks": "^2.13.1",
"taze": "^19.9.2",
"tsdown": "^0.20.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"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"
]
}
}