-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 858 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 858 Bytes
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
{
"name": "overwatch-tool-mono-repo",
"version": "1.0.0",
"private": true,
"workspaces": [
"item-optimizer",
"wiki-data-reader"
],
"scripts": {
"test": "npm run test -ws --if-present",
"deploy": "npm run deploy -ws --if-present",
"install-all": "npm install -ws",
"start": "npm run build -w wiki-data-reader && npm run start -w item-optimizer",
"refresh-snapshots": "npm run refresh-snapshots -w wiki-data-reader",
"update-items": "npm run update-items -w wiki-data-reader",
"codex:kanban": "ts-node scripts/codexKanban.ts",
"test:codex": "node --test --loader tsx scripts/__tests__/codexKanban.test.ts"
},
"devDependencies": {
"@openai/codex-sdk": "^0.80.0",
"@typescript/native-preview": "^7.0.0-dev.20251212.1",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"tsx": "^4.21.0"
}
}