-
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.05 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.05 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": "apow-cli",
"version": "0.3.0",
"description": "Mine AGENT tokens on Base L2 with AI-powered proof of work",
"keywords": [
"apow",
"agentcoin",
"mining",
"base",
"l2",
"proof-of-work",
"ai",
"crypto"
],
"license": "MIT",
"author": "Agentoshi",
"repository": {
"type": "git",
"url": "https://github.com/Agentoshi/apow-cli.git"
},
"homepage": "https://github.com/Agentoshi/apow-cli",
"bin": {
"apow": "dist/index.js",
"apow-cli": "dist/index.js"
},
"engines": {
"node": ">=18.17.0"
},
"files": [
"dist",
"skill.md",
".env.example",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@solana/web3.js": "^1.98.0",
"commander": "^14.0.0",
"dotenv": "^17.2.3",
"openai": "^6.6.0",
"qrcode-terminal": "^0.12.0",
"viem": "^2.38.2"
},
"devDependencies": {
"@types/node": "^24.6.0",
"tsx": "^4.20.5",
"typescript": "^5.9.3"
}
}