forked from emrekayat/Query402
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1017 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1017 Bytes
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
{
"name": "query402",
"version": "0.1.0",
"private": true,
"description": "Query402 monorepo: agentic pay-per-query hub with Stellar x402",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev:api": "npm run dev --workspace @query402/api",
"dev:web": "npm run dev --workspace @query402/web",
"dev:agent": "npm run dev --workspace @query402/agent-client",
"start:api": "npm run start --workspace @query402/api",
"cli": "npm run cli --workspace @query402/agent-client --",
"demo:agent": "npm run demo --workspace @query402/agent-client",
"validate:real": "npm run validate:real --workspace @query402/agent-client",
"preview:web": "npm run preview --workspace @query402/web",
"build": "npm run build --workspaces",
"typecheck": "npm run typecheck --workspaces",
"lint": "npm run lint --workspaces",
"format": "npm run format --workspaces"
},
"devDependencies": {
"typescript": "^5.8.3"
}
}