-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 KB
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
{
"name": "pr-tracker-cli",
"version": "1.0.0",
"description": "CLI tool to manage GitHub PRs that require your attention",
"main": "dist/index.js",
"bin": {
"pr-cli": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"manage": "node dist/index.js manage",
"update": "node dist/index.js update",
"daemon": "node dist/index.js daemon",
"configure": "node dist/index.js configure",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"keywords": [
"cli",
"github",
"pr",
"pull-request"
],
"author": "",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^20.0.2",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"enquirer": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"node-notifier": "^10.0.1",
"open": "^8.4.2",
"ora": "^5.4.1",
"prettier": "^3.2.4"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/node-notifier": "^8.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}