forked from cobusgreyling/loop-engineering
-
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.34 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.34 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": "@cobusgreyling/loop-cost",
"version": "1.0.3",
"description": "Estimate token budgets and daily costs for loop engineering patterns. By cadence, readiness level (L1/L2/L3), and coding agent tool.",
"type": "module",
"bin": {
"loop-cost": "dist/cli.js"
},
"files": [
"dist",
"registry.json",
"README.md"
],
"scripts": {
"bundle": "node scripts/bundle-registry.mjs",
"build": "npm run bundle && tsc && chmod +x dist/cli.js",
"test": "npm run build && node --test test/estimator.test.mjs",
"prepublishOnly": "npm test",
"start": "node dist/cli.js"
},
"engines": {
"node": ">=18"
},
"keywords": [
"loop-engineering",
"ai-agents",
"coding-agents",
"token-budget",
"cost-estimate",
"claude-code",
"grok",
"budget",
"devtools"
],
"author": "Cobus Greyling",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cobusgreyling/loop-engineering.git",
"directory": "tools/loop-cost"
},
"homepage": "https://cobusgreyling.github.io/loop-engineering/",
"bugs": {
"url": "https://github.com/cobusgreyling/loop-engineering/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"yaml": "^2.8.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}