-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
{
"name": "mgre",
"version": "0.0.0-semantic-release",
"description": "Manage Git repository easily",
"keywords": [
"cli",
"git",
"management",
"repository"
],
"repository": {
"type": "git",
"url": "https://github.com/zxf4399/mgre.git"
},
"license": "MIT",
"author": "zxf4399",
"imports": {
"#constant": "./src/utils/constant.mjs",
"#db": "./src/utils/db.mjs",
"#config": "./src/utils/config.mjs",
"#logger": "./src/utils/logger.mjs",
"#pkg": "./src/utils/pkg.mjs"
},
"module": "src/index.mjs",
"bin": {
"mgre": "./src/index.mjs"
},
"files": [
"src"
],
"scripts": {
"dev": "node src/index.mjs",
"lint": "eslint . --ext .mjs --fix",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"@clack/prompts": "^0.6.0",
"@jest/globals": "^29.4.3",
"chalk": "^5.2.0",
"clipboardy": "^3.0.0",
"commander": "^10.0.0",
"execa": "^7.0.0",
"git-url-parse": "^13.1.0",
"lodash-es": "^4.17.21",
"sqlite3": "^5.1.4",
"winston": "^3.8.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"semantic-release": "^20.1.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0"
}
}