-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.63 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
{
"name": "release-toolbox",
"version": "0.2.0",
"description": "A push release gui tool.",
"keywords": [
"git",
"github",
"npm",
"inquirer",
"gui",
"push",
"release"
],
"author": "nmsn <[email protected]>",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"files": [
"lib/",
"esm/"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"bin": {
"rltb": "/lib/cli.js"
},
"scripts": {
"prepare": "husky install",
"clean": "tsc --build --clean",
"build:es": "tsc",
"build:watch": "tsc --watch",
"build": "npm run clean && npm run build:es",
"release": "npm run build && node ./lib/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nmsn/release-toolbox.git"
},
"bugs": {
"url": "https://github.com/nmsn/release-toolbox/issues"
},
"homepage": "https://github.com/nmsn/release-toolbox#readme",
"dependencies": {
"@octokit/core": "^5.0.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.11",
"semver": "^7.5.4",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^20.6.2",
"@types/semver": "^7.5.2",
"@types/shelljs": "^0.8.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16"
}
}