-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.14 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
87
88
89
90
91
{
"name": "@tomjs/release-cli",
"type": "module",
"version": "4.5.1",
"description": "A CLI tool to automatically publish npm packages.",
"keywords": [
"cli",
"release",
"version",
"changelog",
"publish"
],
"author": {
"name": "Tom Gao",
"email": "[email protected]"
},
"license": "MIT",
"bin": {
"rc": "./dist/index.js",
"release-cli": "./dist/index.js"
},
"files": [
"dist",
"index.d.ts"
],
"types": "./index.d.ts",
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomjs/release-cli.git"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint \"{src,test}/**/*.ts\" *.{js,cjs,ts} --fix --cache",
"lint:prettier": "prettier --write .",
"prepare": "husky",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@manypkg/get-packages": "^2.2.1",
"@tomjs/logger": "^1.1.2",
"@tomjs/pkg": "^1.0.2",
"chalk": "^5.3.0",
"cosmiconfig": "^9.0.0",
"dayjs": "^1.11.11",
"execa": "^9.2.0",
"hosted-git-info": "^7.0.2",
"inquirer": "9.2.17",
"is-subdir": "^1.2.0",
"log-symbols": "^6.0.0",
"meow": "^13.2.0",
"open": "^10.1.0",
"ora": "^8.0.1",
"publint": "^0.2.8",
"semver": "^7.6.2",
"strip-ansi": "^7.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@tomjs/commitlint": "^3.3.0",
"@tomjs/eslint": "^3.2.0",
"@tomjs/prettier": "^1.4.1",
"@tomjs/tsconfig": "^1.6.0",
"@types/hosted-git-info": "^3.0.5",
"@types/inquirer": "^9.0.7",
"@types/node": "^18.19.36",
"@types/semver": "^7.5.8",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"tsup": "^8.1.0",
"tsx": "^4.15.6",
"type-fest": "^4.20.1",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}