-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.09 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.09 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
{
"name": "@blockrun/cc",
"version": "0.9.12",
"description": "Run Claude Code with any model — no rate limits, no account locks, no phone verification. Pay per use with USDC.",
"type": "module",
"bin": {
"brcc": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js"
},
"keywords": [
"claude-code",
"ai",
"llm",
"gpt",
"gemini",
"deepseek",
"anthropic",
"openai",
"x402",
"usdc",
"crypto",
"pay-per-use",
"no-rate-limit",
"blockrun"
],
"license": "BUSL-1.1",
"repository": {
"type": "git",
"url": "https://github.com/BlockRunAI/brcc"
},
"homepage": "https://blockrun.ai",
"engines": {
"node": ">=20"
},
"dependencies": {
"@blockrun/llm": "^1.4.2",
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"bs58": "^6.0.0",
"chalk": "^5.4.0",
"commander": "^13.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}