-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.77 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
49
50
51
{
"name": "@missionsquad/agentindex-api",
"version": "1.5.5",
"description": "AgentIndex blockchain scanner API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"private": true,
"scripts": {
"start": "node lib/index.js",
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "vitest run",
"test:x402": "bash scripts/test-x402-payments.sh",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"scrape:uris": "ts-node-dev --transpile-only scripts/scrape-agent-uris.ts",
"backfill:metadata": "ts-node-dev --transpile-only scripts/backfill-metadata.ts",
"backfill:metadata:dry": "ts-node-dev --transpile-only scripts/backfill-metadata.ts --dry-run",
"backfill:metadata:retry": "ts-node-dev --transpile-only scripts/backfill-metadata.ts --retry-failed",
"backfill:metadata:force": "ts-node-dev --transpile-only scripts/backfill-metadata.ts --force",
"backfill:metadata:reprocess": "ts-node-dev --transpile-only scripts/backfill-metadata.ts --reprocess-all",
"lint": "tsc --noEmit",
"prepublishOnly": "yarn lint && yarn test && yarn build"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@helia/verified-fetch": "^7.0.0",
"@missionsquad/x402-proxy": "^0.1.1",
"@x402/paywall": "2.4.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"evmdecoder": "^0.0.71",
"express": "^4.21.2",
"mongodb": "^6.12.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.13.4",
"@types/supertest": "^6.0.3",
"@types/ws": "^8.5.14",
"@vitest/coverage-v8": "^3.0.5",
"supertest": "^7.2.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}