-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "@thiagocolen/patb-cli",
"version": "0.2.0",
"description": "Interactive CLI and Zed ACP Bridge for Pinky and the Brain remote service",
"type": "module",
"main": "./dist/index.js",
"bin": {
"patb-cli": "./dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"acp",
"zed",
"cli",
"agent",
"pinky-and-the-brain"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thiagocolen/patb-cli.git"
},
"bugs": {
"url": "https://github.com/thiagocolen/patb-cli/issues"
},
"homepage": "https://github.com/thiagocolen/patb-cli#readme",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"prepublishOnly": "npm run test:unit",
"docs:install": "npm install --prefix docs",
"docs:start": "npm run start --prefix docs",
"docs:build": "npm run build --prefix docs",
"test:unit": "vitest run src/tests"
},
"dependencies": {
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^20.14.9",
"typescript": "^5.5.2",
"vitest": "^1.6.1"
}
}