-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "claude-eta",
"version": "1.3.18",
"description": "Repair loop detector and ETA calibrator for Claude Code",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "npm run build && npm run test:local:run",
"test:local:run": "node scripts/run-tests.mjs local",
"test:unit": "npm run build && npm run test:unit:run",
"test:unit:run": "node scripts/run-tests.mjs unit",
"test:integration": "npm run build && npm run test:integration:run",
"test:integration:run": "node scripts/run-tests.mjs integration",
"test:remote": "npm run build && npm run test:remote:run",
"test:remote:run": "node scripts/run-tests.mjs remote",
"test:perf": "node scripts/bench-hooks.mjs",
"lint": "tsc --noEmit",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.js'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.js'",
"admin": "node admin/serve.mjs"
},
"keywords": [
"claude-code",
"plugin",
"eta",
"time-tracking",
"estimation"
],
"author": "mmmprod",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"fast-check": "^4.8.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
}
}