-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"author": "Keven Leone <[email protected]>",
"bin": {
"gitray": "bin/gitray.cjs"
},
"devDependencies": {
"@types/figlet": "^1.5.4",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.0.5",
"typescript": "^4.7.4"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"boxen": "^7.0.0",
"cli-table3": "^0.6.2",
"commander": "^9.3.0",
"dayjs": "^1.10.7",
"figlet": "^1.5.2",
"open": "^8.4.0",
"ora": "^5.4.1",
"prompts": "^2.4.2",
"zx": "7.0.6"
},
"engines": {
"node": ">= 14"
},
"license": "MIT",
"main": "./dist/index.js",
"name": "gitray",
"scripts": {
"build": "./scripts/build.sh",
"lint": "eslint --ext ts",
"postinstall": "npm run build",
"start": "./dist/index.js",
"watch": "tsc -w"
},
"type": "module",
"version": "3.2.0"
}