-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 927 Bytes
/
package.json
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
{
"name": "@amxx/graphprotocol-utils",
"version": "1.2.0",
"description": "Tooling for graphprotocol subgraph construction",
"author": "Hadrien Croubois (@Amxx)",
"license": "MIT",
"main": "index.ts",
"bin": {
"graph-compiler": "scripts/graph-compiler/cli.js"
},
"files": [
"generated/schema.ts",
"generated/schema.graphql",
"common",
"scripts",
"src",
"index.ts"
],
"scripts": {
"prepublish": "rimraf generated",
"prepare": "npm run prepare:schema && npm run prepare:codegen",
"prepare:schema": "scripts/graph-compiler/cli.js --config config.json --include src --no-common-types --export-schema",
"prepare:codegen": "graph codegen testing/subgraph.yaml",
"test": "graph build testing/subgraph.yaml"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.35.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.81.0"
},
"engines": {
"node": ">=0.12"
}
}