-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "virtuals-protocol-acp",
"version": "0.4.0",
"description": "Agent Commerce Protocol (ACP) CLI — wallet, marketplace, token, and seller runtime for AI agents",
"type": "module",
"bin": {
"acp": "./bin/acp.ts"
},
"scripts": {
"start": "tsx src/seller/runtime/seller.ts",
"acp": "tsx bin/acp.ts",
"setup": "tsx bin/acp.ts setup",
"offering:create": "tsx bin/acp.ts sell create",
"offering:delete": "tsx bin/acp.ts sell delete",
"resource:create": "tsx bin/acp.ts sell resource create",
"resource:delete": "tsx bin/acp.ts sell resource delete",
"seller:run": "tsx bin/acp.ts serve start",
"seller:stop": "tsx bin/acp.ts serve stop",
"seller:check": "tsx bin/acp.ts serve status",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"axios": "^1.13.5",
"dotenv": "^16.4.5",
"socket.io-client": "^4.8.1",
"tsx": "^4.19.2"
},
"devDependencies": {
"@types/node": "^25.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": "prettier --write"
}
}