-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "@linioi/pi-btw",
"version": "0.1.1",
"description": "Side-question extension for pi. Ask one-off questions during agent work without derailing the main session.",
"type": "module",
"author": "RimuruW",
"license": "MIT",
"keywords": [
"pi-extension",
"pi-coding-agent",
"side-question",
"llm",
"ai-assistant"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RimuruW/pi-btw.git"
},
"bugs": {
"url": "https://github.com/RimuruW/pi-btw/issues"
},
"homepage": "https://github.com/RimuruW/pi-btw#readme",
"publishConfig": {
"access": "public"
},
"files": [
"index.ts",
"README.md"
],
"engines": {
"node": ">=20"
},
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*"
},
"scripts": {
"clean": "echo 'nothing to clean'",
"build": "echo 'No build step required: pi loads TypeScript extensions directly'",
"check": "node --experimental-strip-types --test tests/*.test.ts",
"prepack": "npm run check"
},
"pi": {
"extensions": [
"./index.ts"
]
}
}