-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 847 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 847 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
27
28
29
30
31
{
"name": "ona-code",
"version": "0.2.0",
"private": true,
"type": "module",
"description": "Multi-provider SDLC SQLite REPL (CLEAN_ROOM_SPEC): Anthropic Messages, LM Studio / OpenAI-compatible chat. Node 22+.",
"engines": {
"node": ">=22"
},
"bin": {
"ona": "./bin/agent.mjs",
"ona-code": "./bin/agent.mjs"
},
"scripts": {
"start": "node ./bin/agent.mjs",
"repl": "node ./bin/agent.mjs",
"verify": "node ./scripts/verify-sdlc-hook-order.mjs",
"acceptance": "bash ./scripts/sdlc-acceptance.sh",
"test:bugs": "bash tests/bugs/run-all.sh"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"better-sqlite3": "^11.8.1",
"chalk": "^5.6.2",
"ink": "^6.8.0",
"ink-text-input": "^6.0.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"react": "^19.2.4"
}
}