-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.83 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@blockrun/llm",
"version": "1.6.1",
"type": "module",
"description": "BlockRun LLM Gateway SDK - Pay-per-request AI via x402 on Base and Solana",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --external @anthropic-ai/sdk --external @solana/web3.js --external @solana/spl-token --external bs58",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch --external @anthropic-ai/sdk --external @solana/web3.js --external @solana/spl-token --external bs58",
"test": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"keywords": [
"llm",
"ai",
"x402",
"base",
"solana",
"usdc",
"micropayments",
"openai",
"claude",
"gemini",
"blockchain"
],
"author": "BlockRun <hello@blockrun.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BlockRunAI/blockrun-llm-ts"
},
"homepage": "https://blockrun.ai",
"bugs": {
"url": "https://github.com/BlockRunAI/blockrun-llm-ts/issues"
},
"dependencies": {
"@blockrun/clawrouter": "^0.12.71",
"bs58": "^6.0.0",
"viem": "^2.21.0"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@solana/spl-token": "^0.4.0",
"@solana/web3.js": "^1.98.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.0.0",
"eslint": "^9.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.15.4"
}