-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.4 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
52
53
54
55
56
57
58
59
60
61
{
"name": "gitwork-cli",
"version": "0.3.0",
"description": "Turn GitHub into your work OS — OOO, desk, path, digest, nudge, WIP, ship, fair, handoff, reask, ball, bots.",
"type": "module",
"bin": {
"gitwork": "bin/gitwork.js"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"bin",
"dist",
"action",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"dev": "tsx src/cli.ts",
"test": "node --import tsx --test test/graph.test.ts test/util.test.ts test/client.test.ts",
"prepublishOnly": "npm run build",
"start": "node dist/cli.js",
"pack:smoke": "npm pack && npm install -g ./gitwork-cli-0.3.0.tgz && gitwork --help"
},
"keywords": [
"github",
"cli",
"ooo",
"code-review",
"productivity",
"devops",
"github-actions"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@octokit/graphql": "^8.2.2",
"@octokit/rest": "^21.1.1",
"commander": "^13.1.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sqlace/gitwork.git"
},
"bugs": {
"url": "https://github.com/Sqlace/gitwork/issues"
},
"homepage": "https://github.com/Sqlace/gitwork#readme"
}