-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "@operator/engine",
"version": "0.6.0",
"description": "Operator — closed-loop SDLC engine",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"workspaces": [
"packages/*",
"app"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit && npm run typecheck --workspace @operator/app",
"test": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint --config eslint.operator.config.js . && node scripts/check-ts-prune.mjs && node scripts/check-knip.mjs",
"lint:fix": "eslint --config eslint.operator.config.js . --fix",
"lint:ts-prune": "node scripts/check-ts-prune.mjs",
"lint:knip": "node scripts/check-knip.mjs",
"dev": "tsx --env-file=.env.local engine/entry.ts",
"exec": "tsx --env-file=.env.local engine/entry.ts --once",
"exec:status": "tsx --env-file=.env.local engine/entry.ts --status",
"app:dev": "npm run dev --workspace @operator/app"
},
"dependencies": {
"@octokit/rest": "^22.0.0",
"better-sqlite3": "^12.0.0",
"js-yaml": "^4.1.0",
"node-cron": "^4.0.0",
"pino": "^10.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/better-sqlite3": "^7.6.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.0",
"@types/node-cron": "^3.0.11",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "^9.18.0",
"knip": "^6.12.2",
"pino-pretty": "^13.1.3",
"tsx": "^4.19.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.20.0",
"vitest": "^4.0.0"
},
"overrides": {
"esbuild": "^0.28.1",
"nanoid": "^3.3.18",
"next": {
"postcss": "^8.5.26",
"sharp": "^0.35.3"
}
}
}