-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.31 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.31 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
{
"name": "agent0-sdk-subgraph",
"version": "1.0.0",
"description": "Subgraph for Agent0 SDK - ERC-8004 Agent Discovery and Trust",
"repository": "https://github.com/agent0-sdk/subgraph",
"license": "MIT",
"scripts": {
"validate": "node scripts/validate.js",
"generate": "node scripts/generate.js",
"generate:single": "node scripts/generate.js",
"codegen": "npm run generate && graph codegen",
"codegen:single": "graph codegen deployments/generated/$DEPLOYMENT/subgraph.yaml",
"build": "graph build",
"build:all": "npm run generate && node scripts/build-all.js",
"build:single": "graph build deployments/generated/$DEPLOYMENT/subgraph.yaml",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ agent0-sdk/agent0-sdk",
"deploy:studio": "node scripts/deploy-studio.js",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 agent0-sdk/agent0-sdk",
"create-local": "graph create --node http://localhost:8020/ agent0-sdk/agent0-sdk",
"remove-local": "graph remove --node http://localhost:8020/ agent0-sdk/agent0-sdk",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.98.1",
"@graphprotocol/graph-ts": "0.38.2",
"mustache": "^4.2.0"
},
"devDependencies": {
"matchstick-as": "0.6.0"
}
}