-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.41 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
{
"name": "done-coding-cli",
"version": "0.0.1",
"private": true,
"description": "done-coding命令行工具",
"workspaces": [
"packages/*"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"postinstall": "prettier --write pnpm-lock.yaml",
"push": "lerna publish",
"postpush": "node ./scripts/postpush.mjs",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s --release-count 0"
},
"repository": {
"type": "git",
"url": "https://github.com/done-coding/done-coding-cli.git"
},
"author": "JustSoSu",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@ls-lint/ls-lint": "^2.2.3",
"@types/node": "^18.19.4",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"conventional-changelog": "^5.1.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.49.0",
"eslint-config-alloy": "^5.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-regexp": "^2.7.0",
"husky": "^8.0.3",
"lerna": "^7.3.0",
"lint-staged": "^12.5.0",
"prettier": "^3.8.0",
"typescript": "^5.8.3"
},
"lint-staged": {
"packages/**/src/*": [
"ls-lint"
],
"*.{ts,js,vue,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0"
}
}