-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 901 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
{
"name": "ratchet",
"version": "0.1.0",
"description": "Agentic optimization loop with high watermarking",
"type": "module",
"bin": {
"ratchet": "./src/cli.ts"
},
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun build --compile src/cli.ts --outfile dist/ratchet",
"build:all": "bun build --compile --target=bun-darwin-arm64 src/cli.ts --outfile dist/ratchet-macos && bun build --compile --target=bun-linux-x64 src/cli.ts --outfile dist/ratchet-linux && bun build --compile --target=bun-windows-x64 src/cli.ts --outfile dist/ratchet-windows.exe",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@clack/prompts": "^1.1.0",
"commander": "^14.0.3",
"csv-parse": "^6.1.0",
"tiktoken": "^1.0.22",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"typescript": "^5.9.3"
}
}