-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "pi-codebuddy-sdk",
"version": "0.3.0",
"description": "Pi extension that uses CodeBuddy (via Agent SDK) as a model provider and adds an AskCodebuddy tool.",
"author": "slahser",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/RealAlexandreAI/pi-codebuddy-sdk.git"
},
"engines": {
"node": ">=20"
},
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"extension",
"codebuddy",
"agent-sdk",
"provider"
],
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test:unit": "node --import tsx --test tests/unit-*.mjs",
"test": "set -a && [ -f .env.test ] && . .env.test; set +a && npm run test:unit && tests/int-smoke.sh && tests/int-multi-turn.sh && tests/int-cache.sh && node --import tsx --test tests/int-*.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@tencent-ai/agent-sdk": "^0.3.0",
"change-case": "^5.4.4",
"typebox": "^1.3.0"
},
"peerDependencies": {
"@earendil-works/pi-ai": ">=0.80.0",
"@earendil-works/pi-coding-agent": ">=0.80.0",
"@earendil-works/pi-tui": ">=0.80.0"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.80.2",
"@earendil-works/pi-coding-agent": "^0.80.2",
"@earendil-works/pi-tui": "^0.80.2",
"@types/node": "^24.13.2",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"pi": {
"extensions": [
"./src/index.ts"
]
}
}