-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.37 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
{
"name": "pi-token-killer",
"version": "0.1.6",
"description": "Token Killer for Pi -- reduce LLM token consumption by 60-90% on common dev commands",
"type": "module",
"license": "MIT",
"author": "codexstar69 <engazedigital@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/codexstar69/pi-rtk.git"
},
"homepage": "https://github.com/codexstar69/pi-rtk#readme",
"bugs": {
"url": "https://github.com/codexstar69/pi-rtk/issues"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"pi-package",
"pi-extension",
"token-optimization",
"llm",
"ai-agent",
"developer-tools",
"cli",
"output-filter",
"token-reduction",
"git",
"test-runner",
"linter",
"sqlite",
"analytics",
"context-window",
"coding-agent"
],
"files": ["index.ts", "src/**/*.ts"],
"pi": { "extensions": ["./index.ts"] },
"scripts": {
"test": "vitest run --dir test",
"test:watch": "vitest --dir test",
"typecheck": "tsc --noEmit",
"prepublishOnly": "vitest run --dir test"
},
"dependencies": { "better-sqlite3": "^11.9.1" },
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@sinclair/typebox": "*"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"vitest": "^3.0.0",
"typescript": "^5.7.0"
}
}