-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.6 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": "@j___avi/tokenwise",
"version": "0.1.0",
"description": "Self-hosted server that gives your engineering team a shared AI agent workflow.",
"type": "module",
"bin": {
"tokenwise": "server/index.mjs"
},
"files": [
"server/",
"framework/",
"scripts/contribute-finding.mjs"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/12122J/tokenwise.git"
},
"scripts": {
"build": "node scripts/build-skill.mjs --config framework/config.yaml",
"build:watch": "node scripts/build-skill.mjs --config framework/config.yaml --watch",
"findings": "node scripts/contribute-finding.mjs list",
"findings:merge": "node scripts/contribute-finding.mjs merge",
"cards": "node scripts/collect-cards.mjs",
"count:skills": "node scripts/count-skill-words.mjs skills adapters",
"eval:run": "node scripts/run-eval.mjs",
"eval:smoke": "node scripts/run-eval.mjs --tasks bugfix-known-failure --variants superpowers,tokenwise-codegraph --command \"node scripts/mock-agent.mjs\" --out results/smoke-runs.jsonl --logs-dir results/smoke-logs",
"summarize": "node scripts/summarize-results.mjs results/runs.jsonl",
"test": "node --test",
"check": "npm run cards && npm run count:skills && npm test",
"server": "node server/index.mjs",
"server:dev": "node --watch server/index.mjs"
},
"keywords": [
"agent-skills",
"token-efficiency",
"codegraph",
"superpowers",
"codex",
"claude-code"
],
"license": "MIT",
"dependencies": {
"cookie-parser": "^1.4.7",
"express": "^5.2.1"
}
}