-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 735 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "context-optimizer",
"version": "0.3.0",
"private": true,
"type": "module",
"bin": {
"context-optimizer": "dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"analyze": "npm run build && node dist/cli.js analyze",
"analyze:last": "npm run build && node dist/cli.js analyze --last",
"claudemd": "npm run build && node dist/cli.js claudemd",
"evaluate": "npm run build && node dist/cli.js evaluate",
"evaluate:dry": "npm run build && node dist/cli.js evaluate --dry-run",
"insights": "npm run build && node dist/cli.js insights"
},
"devDependencies": {
"@types/node": "^25.2.3",
"typescript": "^5.6.0"
}
}