-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.88 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
42
43
44
45
46
47
48
{
"name": "sol-agent-gcp-hackerton",
"version": "1.0.0",
"description": "Outcome-verified agent payments on Solana",
"scripts": {
"dev": "node --env-file-if-exists=.env --import tsx --watch src/server.ts",
"devnet": "node --env-file-if-exists=.env scripts/devnet-demo.mjs",
"devnet:full": "node --env-file-if-exists=.env scripts/devnet-demo.mjs --full-settlement",
"devnet:escrow": "node --env-file-if-exists=.env scripts/devnet-demo.mjs --onchain-escrow",
"pay:setup": "bash scripts/setup-pay-cli.sh",
"start": "node --env-file-if-exists=.env --import tsx src/server.ts",
"data:api": "node scripts/data-api.mjs",
"balance:api": "node scripts/balance-api.mjs",
"pay:gate": "NO_DNA=1 pay gate api config/paywall.yml --bind 127.0.0.1:1402 --no-register",
"escrow:check": "NO_DNA=1 cargo check --workspace",
"escrow:client": "node scripts/generate-escrow-client.mjs",
"escrow:integration": "node --import tsx --test tests/escrow.integration.test.ts",
"escrow:test": "NO_DNA=1 cargo test --workspace",
"test": "node --import tsx --test tests/pipeline.test.ts tests/onchain-escrow.test.ts",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EarthIsMine/sol-agent-gcp-hackerton.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/EarthIsMine/sol-agent-gcp-hackerton/issues"
},
"homepage": "https://github.com/EarthIsMine/sol-agent-gcp-hackerton#readme",
"dependencies": {
"@solana-program/token": "^0.14.0",
"@solana/kit": "^6.10.0"
},
"devDependencies": {
"@codama/nodes-from-anchor": "^1.5.3",
"@codama/renderers-js": "^2.3.1",
"@types/node": "^26.1.2",
"codama": "^1.10.0",
"litesvm": "^1.3.0",
"tsx": "^4.23.5",
"typescript": "^7.0.2"
}
}