-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 933 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 933 Bytes
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
{
"name": "pumpclaw-cli",
"version": "0.1.1",
"description": "CLI for PumpClaw - Free token launcher for AI agents on Base (Uniswap V4). 80% creator fees, LP locked forever.",
"keywords": [
"token-launcher",
"base",
"uniswap-v4",
"ai-agent",
"erc20",
"defi",
"pumpclaw",
"fair-launch",
"liquidity",
"crypto",
"blockchain",
"token-creation",
"ethereum",
"web3"
],
"homepage": "https://pumpclaw.com",
"repository": {
"type": "git",
"url": "https://github.com/clawd800/pumpclaw"
},
"license": "MIT",
"type": "module",
"bin": {
"pumpclaw": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js"
},
"dependencies": {
"commander": "^13.1.0",
"viem": "^2.45.1"
},
"devDependencies": {
"@types/node": "^22.15.29",
"tsx": "^4.20.2",
"typescript": "^5.9.3"
}
}