forked from Query402/Query402
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.54 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
{
"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 <25.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",
"test": "npm run test --workspace @query402/shared && npm run test --workspace @query402/api && npm run test --workspace @query402/agent-client",
"test:coverage": "npm run test:coverage --workspace @query402/api",
"migrate:analytics": "npm run migrate:analytics --workspace @query402/api",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:source-artifacts": "node scripts/check-source-artifacts.mjs"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
}
}