-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.74 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
66
67
68
69
70
71
72
{
"name": "@bitrouter/agent",
"version": "0.1.0",
"description": "CLI wizard that analyzes your agentic codebase and generates a BitRouter policy, audit, and savings estimate",
"type": "module",
"bin": {
"bitrouter-agent": "dist/bin.js",
"bitrouter": "dist/pi/launch.js"
},
"exports": {
"./smithers": {
"types": "./dist/smithers.d.ts",
"import": "./dist/smithers.js"
}
},
"files": [
"dist",
"skills",
"README.md",
"SPEC.md"
],
"keywords": [
"pi-package"
],
"pi": {
"extensions": [
"./dist/pi/extension.js"
],
"skills": [
"./skills"
]
},
"engines": {
"node": ">=22.22.0"
},
"scripts": {
"build": "tsup && chmod +x dist/bin.js dist/pi/launch.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "vitest run .e2e.test.ts",
"test:watch": "vitest",
"lint": "eslint . && prettier --check \"src/**/*.ts\" \"*.ts\"",
"fix": "eslint . --fix && prettier --write \"src/**/*.ts\" \"*.ts\"",
"sync-registry": "tsx scripts/sync-registry.ts"
},
"dependencies": {
"@ai-sdk/openai": "^4.0.5",
"@earendil-works/pi-coding-agent": "^0.80.0",
"@smithers-orchestrator/agents": "^0.29.0",
"fast-glob": "^3.3.3",
"semver": "^7.6.0",
"typebox": "1.1.38",
"yaml": "^2.5.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^22.8.0",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.33",
"ai": "^7.0.34",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"smithers-orchestrator": "0.29.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.12.0",
"vitest": "^2.1.0",
"zod": "^4.4.3"
}
}