forked from ethereum/execution-apis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.34 KB
/
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
37
38
{
"name": "execution-apis",
"version": "0.0.0",
"description": "Collection of JSON-RPC APIs provided by Ethereum 1.0 clients",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npm run build:spec",
"build:spec": "node scripts/build.js",
"build:docs": "cd build/docs/gatsby && npm install --legacy-peer-deps && gatsby build --prefix-paths",
"lint": "node scripts/build.js && node scripts/validate.js && node scripts/graphql-validate.js",
"clean": "rm -rf build && mkdir -p build",
"generate-clients": "mkdir -p build && open-rpc-generator generate -c open-rpc-generator-config.json",
"graphql:schema": "node scripts/graphql.js",
"graphql:validate": "node scripts/graphql-validate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/execution-apis.git"
},
"author": "Ethereum",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/ethereum/execution-apis/issues"
},
"homepage": "https://github.com/ethereum/execution-apis#readme",
"devDependencies": {
"@graphql-inspector/core": "~3.3.0",
"@open-rpc/generator": "1.18.6",
"@open-rpc/schema-utils-js": "1.15.0",
"gatsby": "~4.16.0",
"gh-pages": "~4.0.0",
"graphql": "~16.3.0",
"graphql-request": "~4.1.0",
"js-yaml": "~4.1.0",
"json-schema-merge-allof": "~0.8.1"
}
}