-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "release-base-cli",
"version": "1.0.3",
"description": "update version & push tag",
"bin": {
"release-cli": "cli.js"
},
"scripts": {
"start": "esno src/cli.ts",
"build": "esno scripts/build.ts",
"fix": "pnpm prettier && tsc && pnpm lint",
"lint": "eslint **/*.{js,cjs,mjs,ts,cts,mts} --fix",
"prettier": "prettier --ignore-path .eslintignore **/*.{js,cjs,mjs,ts,cts,mts} --write"
},
"keywords": [
"release",
"changelog"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wc19950724/release-base-cli.git"
},
"bugs": {
"url": "https://github.com/wc19950724/release-base-cli/issues"
},
"homepage": "https://github.com/wc19950724/release-base-cli#readme",
"devDependencies": {
"@types/node": "^18.16.1",
"@types/prompts": "^2.4.4",
"@types/semver": "^7.3.13",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"esno": "^0.16.3",
"ghooks": "^2.0.4",
"lint-staged": "^13.2.2",
"picocolors": "^1.0.0",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"dependencies": {
"cac": "^6.7.14",
"prompts": "^2.4.2",
"semver": "^7.5.0"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,cts,mts}": [
"pnpm fix"
]
},
"config": {
"ghooks": {
"pre-commit": "npx lint-staged --quiet --concurrent false"
}
}
}