-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.19 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.19 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
61
{
"name": "@blockrun/runcode",
"version": "1.1.0",
"description": "RunCode — AI coding agent powered by 41+ models. Pay per use with USDC.",
"type": "module",
"bin": {
"runcode": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js"
},
"keywords": [
"runcode",
"coding-agent",
"ai",
"llm",
"gpt",
"gemini",
"deepseek",
"anthropic",
"openai",
"x402",
"usdc",
"crypto",
"pay-per-use",
"blockrun"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/BlockRunAI/runcode"
},
"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",
"@types/react": "^19.2.14",
"bs58": "^6.0.0",
"chalk": "^5.4.0",
"commander": "^13.0.0",
"ink": "^6.8.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^19.2.4"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}