forked from BlockRunAI/clawrouter-codex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.27 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
{
"name": "@blockrun/clawrouter-codex",
"version": "0.3.0",
"description": "Front-adapter that lets OpenAI Codex (Responses API) talk to a ClawRouter proxy — wallet-signed, x402-paid, zero API keys.",
"type": "module",
"license": "MIT",
"bin": {
"clawrouter-codex": "bin/cli.mjs"
},
"exports": {
".": "./src/server.js",
"./translate": "./src/translate.js"
},
"scripts": {
"start": "node scripts/start.mjs",
"setup": "node scripts/setup.mjs",
"doctor": "node scripts/doctor.mjs",
"bridge": "node src/server.js",
"gen-catalog": "node src/gen-catalog.mjs",
"websearch": "node scripts/websearch-toggle.mjs",
"install-daemon": "node scripts/install-daemon.mjs",
"uninstall-daemon": "node scripts/install-daemon.mjs uninstall",
"test": "node --test"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlockRunAI/clawrouter-codex.git"
},
"files": [
"bin",
"src",
"scripts",
"README.md"
],
"keywords": [
"codex",
"clawrouter",
"blockrun",
"responses-api",
"x402",
"llm-router"
],
"dependencies": {
"@blockrun/clawrouter": "^0.12.212",
"@blockrun/llm": "^3.5.0"
}
}