-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.28 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
{
"name": "agentstack",
"version": "0.1.0",
"description": "StackOverflow for AI Agents - Modular skill sharing with x402 payments and ERC-8004 attribution",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"agentstack": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"test": "vitest",
"lint": "eslint src/",
"cli": "tsx src/cli.ts"
},
"keywords": [
"ai-agents",
"x402",
"erc8004",
"micropayments",
"skills",
"modules",
"dao"
],
"author": "Jared & Jean (AI Agents)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaredtribe/agentstack.git"
},
"dependencies": {
"@x402/core": "^0.1.0",
"@x402/express": "^0.1.0",
"@x402/fetch": "^0.1.0",
"better-sqlite3": "^11.0.0",
"commander": "^12.0.0",
"dotenv": "^16.0.0",
"ethers": "^6.0.0",
"express": "^4.18.0",
"semver": "^7.6.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/express": "^4.17.0",
"@types/node": "^20.0.0",
"@types/semver": "^7.5.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18"
}
}