-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.43 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
62
63
{
"name": "pi-acp",
"version": "0.0.33",
"description": "ACP adapter for pi coding agent",
"license": "MIT",
"author": "Sergii Kozak <svkozak@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/svkozak/pi-acp.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"bugs": {
"url": "https://github.com/svkozak/pi-acp/issues"
},
"homepage": "https://github.com/svkozak/pi-acp#readme",
"keywords": [
"acp",
"agent-client-protocol",
"pi-coding-agent",
"adapter"
],
"engines": {
"node": ">=20"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"pi-acp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"format": "prettier . --write",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "node --import tsx --test test/**/*.test.ts",
"smoke": "node scripts/smoke-acp.mjs",
"prepack": "npm run build",
"prepublishOnly": "npm run test && npm run build"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.26.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.0.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"prettier": "^3.8.3",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.18.0"
}
}