-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
63 lines (63 loc) · 1.37 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
{
"name": "cimi",
"license": "MIT",
"version": "1.2.1",
"description": "A tool for fully automatic publishing of npm packages",
"authors": {
"name": "fengxin",
"email": "[email protected]"
},
"files": [
".github",
"README.md",
"dist",
"bin",
"index.ts",
"getVersion.ts"
],
"scripts": {
"build": "tsup",
"patch": "cimi patch main",
"minor": "cimi minor main",
"major": "cimi major main",
"beta": "cimi beta main",
"upgrade": "cimi upgradeBeta main",
"prepare": "husky install",
"prettier": "prettier -w * --ignore-unknown"
},
"bugs": {
"url": "https://github.com/fengxinhhh/Cimi/issues"
},
"homepage": "https://github.com/fengxinhhh/Cimi#readme",
"main": "dist/index",
"bin": "./bin/cli.ts",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^9.4.0",
"inquirer": "^8.2.4",
"tsup": "^6.2.3"
},
"devDependencies": {
"@types/node": "^18.7.20",
"base-prettier-config": "^1.0.2",
"eslint": "^8.23.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"tsup": {
"entry": [
"*.ts",
"bin/*.ts"
],
"minify": true,
"splitting": false,
"clean": true,
"dts": false,
"skipNodeModulesBundle": true
}
}