-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.81 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
59
60
{
"name": "clarp-cli",
"version": "0.1.12",
"description": "Drop-in replacement for claude -p. Uses your Claude Code subscription instead of metered API pricing.",
"type": "module",
"author": "dn00",
"homepage": "https://github.com/dn00/clarp#readme",
"bugs": {
"url": "https://github.com/dn00/clarp/issues"
},
"engines": {
"node": ">=20 <25"
},
"bin": {
"clarp": "./bin/clarp.js"
},
"files": [
"bin/",
"dist/",
"scripts/",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc",
"prepublishOnly": "npm test && npm run build && npm pack --dry-run",
"parity:stream": "npm run build && node scripts/parity-stream.mjs",
"parity:interrupt": "npm run build && node scripts/parity-stream.mjs --cases scripts/cases-interrupt.json --timeout-ms 120000",
"parity:golden-capture": "node scripts/parity-stream.mjs --native-only --cases scripts/cases-goldens.json --timeout-ms 240000",
"parity:replay": "npm run build && node scripts/parity-stream.mjs --cases scripts/cases-goldens.json --native-replay goldens/2026-06-09-claude-2.1.170 --timeout-ms 240000",
"probe:pty-interrupt": "node scripts/pty-interrupt-probe.mjs",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "node scripts/repair-node-pty-spawn-helper.mjs"
},
"dependencies": {
"node-pty": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.5.0",
"vitest": "^4.1.6"
},
"keywords": [
"claude",
"claude-code",
"cli",
"proxy",
"streaming",
"sse",
"anthropic"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dn00/clarp"
}
}