-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.21 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
{
"name": "@capyup/pi-rtk",
"version": "0.1.0",
"description": "pi integration for rtk (Rust Token Killer) — transparently rewrites bash tool calls to rtk equivalents for 60-90% token savings.",
"type": "module",
"license": "MIT",
"author": "capyup",
"repository": {
"type": "git",
"url": "git+https://github.com/capyup/pi-rtk.git"
},
"keywords": [
"pi-package",
"pi",
"pi-extension",
"rtk",
"token-optimization"
],
"files": [
"extensions",
"skills",
"README.md"
],
"publishConfig": {
"access": "public"
},
"pi": {
"extensions": [
"./extensions"
],
"skills": [
"./skills"
]
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "^0.74.0"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.74.0",
"jiti": "^2.6.0"
},
"scripts": {
"test": "node --test --test-reporter=spec 'test/**/*.test.mjs'",
"test:unit": "node --test --test-reporter=spec 'test/unit/**/*.test.mjs'",
"test:e2e": "node --test --test-reporter=spec 'test/e2e/**/*.test.mjs'",
"test:integration": "node --test --test-reporter=spec 'test/integration/**/*.test.mjs'",
"bench": "node benchmark/run.mjs"
}
}