-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.13 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
{
"name": "@solid-money/cli",
"version": "0.1.0",
"description": "Solid Agent Wallet CLI — pay x402 endpoints with USDC on Base from your terminal.",
"license": "MIT",
"homepage": "https://solid.xyz",
"repository": {
"type": "git",
"url": "git+https://github.com/Solid-Money/solid-cli.git"
},
"bugs": {
"url": "https://github.com/Solid-Money/solid-cli/issues"
},
"keywords": [
"solid",
"agent-wallet",
"x402",
"usdc",
"base",
"agents",
"cli"
],
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"solid": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"lint": "tsc --noEmit",
"test": "node --test --import tsx tests/*.test.ts",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"commander": "^12.1.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/prompts": "^2.4.9",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}