forked from ethereum/execution-apis
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.01 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.01 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
52
53
54
55
56
57
58
59
{
"name": "execution-apis",
"version": "0.0.0",
"description": "Collection of JSON-RPC APIs provided by Ethereum 1.0 clients",
"main": "index.js",
"scripts": {
"build": "npm run build:spec",
"build:spec": "node scripts/build.mjs",
"lint": "npm run build:spec && node scripts/validate.mjs && node scripts/graphql-validate.mjs",
"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.mjs",
"graphql:validate": "node scripts/graphql-validate.mjs",
"docusaurus": "docusaurus",
"start:docs": "docusaurus start",
"build:docs": "docusaurus build",
"swizzle:docs": "docusaurus swizzle",
"deploy:docs": "docusaurus deploy",
"clear:docs": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc"
},
"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": {
"@docusaurus/module-type-aliases": "3.7.0",
"@docusaurus/tsconfig": "3.7.0",
"@docusaurus/types": "3.7.0",
"@graphql-inspector/core": "~3.3.0",
"@open-rpc/generator": "1.18.6",
"@open-rpc/schema-utils-js": "1.15.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",
"typescript": "~5.6.2"
},
"dependencies": {
"@docusaurus/core": "3.7.0",
"@docusaurus/plugin-content-docs": "^3.7.0",
"@mdx-js/react": "^3.0.0",
"@metamask/docusaurus-openrpc": "^0.4.1",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}