-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 2.33 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
{
"name": "solana-coralos",
"version": "0.1.0",
"private": true,
"description": "Solana × CoralOS starter kit for agents that earn — fork deliverService() to sell your own service, settled via x402 on devnet. The World Cup oracle is the default demo (npm run dev).",
"type": "module",
"engines": {
"node": ">=20"
},
"workspaces": [
"packages/*",
"coral-agents/*",
"examples/*",
"examples/*/*"
],
"scripts": {
"setup": "npm install --no-audit --no-fund && npm install --prefix scripts --no-audit --no-fund && node scripts/setup.js",
"build": "npm run build:packages && npm run build:agents",
"build:packages": "npm run build -w @pay/agent-runtime && npm run build -w @pay/harness-runtime && npm run build -w @pay/payment-runtime && npm run build -w @pay/solana-agent-tools",
"build:agents": "npm run build -w buyer-agent && npm run build -w seller-agent && npm run build -w verifier-agent",
"typecheck": "npm run build:packages && npm run typecheck:packages && npm run typecheck:examples && npm run typecheck:agents",
"typecheck:packages": "npm run typecheck -w @pay/agent-runtime && npm run typecheck -w @pay/harness-runtime && npm run typecheck -w @pay/payment-runtime && npm run typecheck -w @pay/solana-agent-tools",
"typecheck:examples": "npm run typecheck -w @pay/example-txodds && npm run typecheck -w txodds-feed",
"typecheck:agents": "npm run typecheck -w buyer-agent && npm run typecheck -w seller-agent && npm run typecheck -w verifier-agent",
"test": "npm run build:packages && npm run test:packages && npm run test:examples && npm run test:agents",
"test:packages": "npm test -w @pay/agent-runtime && npm test -w @pay/harness-runtime && npm test -w @pay/payment-runtime && npm test -w @pay/solana-agent-tools",
"test:examples": "npm test -w @pay/example-txodds && npm test -w txodds-feed",
"test:agents": "npm test -w buyer-agent && npm test -w seller-agent && npm test -w verifier-agent",
"coral:console:e2e": "node scripts/coral-console-e2e.mjs --start",
"e2e:devnet": "node scripts/devnet-e2e.mjs",
"dev": "node scripts/txodds.js",
"dev:agentic": "node scripts/txodds-agentic.js",
"agents:stop": "node scripts/stop-agents.js",
"demo:coral": "node scripts/run-example.js examples/txodds coral"
},
"devDependencies": {
"playwright": "^1.61.1"
}
}