-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "procoder-cli",
"version": "0.1.3",
"description": "Offline Git exchange CLI for local repositories and locked-down ChatGPT coding containers",
"license": "MIT",
"author": "amxv",
"repository": {
"type": "git",
"url": "git+https://github.com/amxv/procoder.git"
},
"homepage": "https://github.com/amxv/procoder#readme",
"bugs": {
"url": "https://github.com/amxv/procoder/issues"
},
"bin": {
"procoder": "bin/procoder.js"
},
"config": {
"cliBinaryName": "procoder"
},
"files": [
"bin/procoder.js",
"scripts/postinstall.js",
"cmd",
"internal",
"go.mod",
"README.md",
"AGENTS.md",
"CONTRIBUTORS.md",
"Makefile"
],
"scripts": {
"postinstall": "node scripts/postinstall.js",
"test": "node --test scripts/postinstall.test.js && node --check bin/procoder.js && node --check scripts/postinstall.js",
"lint": "npm run test"
},
"engines": {
"node": ">=18"
},
"keywords": [
"git",
"offline",
"cli",
"chatgpt",
"exchange"
]
}