forked from fengxinhhh/Cimi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "cimi",
"license": "MIT",
"version": "1.1.28",
"description": "A tool for fully automatic publishing of npm packages",
"authors": {
"name": "fengxin",
"email": "1244200081@qq.com"
},
"files": [
".github",
"README.md",
"dist"
],
"scripts": {
"build":"tsup",
"patch": "cimi patch main",
"minor": "cimi minor main",
"major": "cimi major main",
"patchBeta": "cimi patchBeta main",
"minorBeta": "cimi minorBeta main",
"majorBeta": "cimi majorBeta main"
},
"bugs": {
"url": "https://github.com/fengxinhhh/Cimi/issues"
},
"homepage": "https://github.com/fengxinhhh/Cimi#readme",
"main": "dist/index",
"bin": "./dist/bin/cli",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^9.4.0"
},
"devDependencies": {
"@types/node": "^18.7.20",
"eslint": "^8.23.0",
"typescript": "^4.8.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"tsup": {
"entry": [
"src/*.ts",
"src/bin/*.ts"
],
"minify": true,
"splitting": false,
"clean": true,
"dts": true,
"skipNodeModulesBundle": true
}
}