-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.76 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.76 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
{
"name": "shopping-agent-x402",
"version": "1.0.0",
"private": true,
"description": "Shopping Agent with x402 Payment Integration - ReAct AI agent with Node.js Express backend",
"scripts": {
"dev": "concurrently \"pnpm --filter shopping-agent dev:agents-api\" \"pnpm --filter merchant dev\" \"pnpm --filter frontend dev\"",
"dev:cli": "pnpm --filter shopping-agent dev",
"dev:agents-api": "pnpm --filter shopping-agent dev:agents-api",
"dev:server": "pnpm --filter merchant dev",
"dev:frontend": "pnpm --filter frontend dev",
"dev:watch": "concurrently \"pnpm --filter shopping-agent dev:watch\" \"pnpm --filter merchant dev\"",
"build": "pnpm --filter shopping-agent build && pnpm --filter merchant build && pnpm --filter frontend build",
"build:cli": "pnpm --filter shopping-agent build",
"build:agents-api": "pnpm --filter shopping-agent build",
"build:server": "pnpm --filter merchant build",
"build:frontend": "pnpm --filter frontend build",
"install:all": "pnpm install",
"clean": "pnpm --filter shopping-agent clean && pnpm --filter merchant clean && pnpm --filter frontend clean",
"start": "concurrently \"pnpm --filter shopping-agent start:agents-api\" \"pnpm --filter merchant start\"",
"start:cli": "pnpm --filter shopping-agent start",
"start:agents-api": "pnpm --filter shopping-agent start:agents-api",
"start:server": "pnpm --filter merchant start"
},
"devDependencies": {
"concurrently": "^8.2.2",
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}