-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.65 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
64
65
{
"name": "pi-killswitch",
"version": "0.2.2",
"description": "Keep Pi runs controlled with automatic context-budget wrap-up and kill thresholds.",
"type": "module",
"files": [
"index.ts",
"src/killswitch.ts",
"src/killswitch-core.ts",
"src/killswitch-config.ts",
"banner.jpg",
"README.md",
"RELEASING.md",
"LICENSE"
],
"keywords": [
"pi-package",
"pi-extension",
"pi-coding-agent",
"context-window",
"llm",
"token-limit",
"killswitch",
"cost-control"
],
"pi": {
"extensions": [
"./index.ts"
],
"image": "https://raw.githubusercontent.com/boadij/pi-killswitch/main/banner.jpg"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"typecheck:test": "tsc --noEmit -p tsconfig.test.json",
"check": "npm run typecheck && npm run typecheck:test && npm test",
"release:dry": "npm run check && npm pack --dry-run",
"prepublishOnly": "npm run check",
"release:as": "node scripts/release-as.mjs"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.78.0",
"@earendil-works/pi-coding-agent": "^0.78.0",
"@types/node": "^25.9.1",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"publishConfig": {
"access": "public"
},
"author": "Jeffrey Boadi",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/boadij/pi-killswitch.git"
},
"bugs": {
"url": "https://github.com/boadij/pi-killswitch/issues"
},
"homepage": "https://github.com/boadij/pi-killswitch#readme"
}