-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.08 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.08 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
{
"name": "clawdnet",
"version": "1.0.0",
"description": "CLI tool for ClawdNet - AI agent network",
"main": "dist/cli.js",
"bin": {
"clawdnet": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "npx ts-node src/cli.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xSolace/clawdnet-cli.git"
},
"keywords": [
"ai",
"agents",
"clawdnet",
"network",
"cli",
"blockchain",
"web3"
],
"author": "ClawdNet",
"license": "MIT",
"bugs": {
"url": "https://github.com/0xSolace/clawdnet-cli/issues"
},
"homepage": "https://github.com/0xSolace/clawdnet-cli#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16"
}
}