forked from ethereum/execution-apis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.85 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.85 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
{
"name": "execution-apis",
"version": "0.0.0",
"description": "Collection of JSON-RPC APIs provided by Ethereum 1.0 clients",
"main": "index.js",
"scripts": {
"build": "make build",
"build:spec": "make build",
"build:test": "make test",
"build:docs": "npm run build:spec && npm run docs:copy && npm run build:docusaurus",
"lint": "npm run graphql:validate",
"clean": "rm -rf build && mkdir -p build",
"graphql:schema": "node scripts/graphql.js",
"graphql:validate": "node scripts/graphql-validate.js",
"build:docusaurus": "docusaurus build",
"start": "docusaurus start",
"serve": "docusaurus serve",
"clear": "docusaurus clear",
"watch": "nodemon --watch src --watch docs-api/docs --watch README.md --ignore docs-api/docs/quickstart.md --ext yaml,md,json --exec \"npm run build:spec && npm run docs:copy\"",
"docs:copy": "cp README.md ./docs-api/docs/quickstart.md"
},
"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",
"dependencies": {
"@docusaurus/core": "^3.9.2",
"@docusaurus/plugin-client-redirects": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@easyops-cn/docusaurus-search-local": "0.52.2",
"@graphql-inspector/core": "~3.3.0",
"@mdx-js/react": "^3.0.0",
"@open-rpc/docusaurus-plugin": "0.1.6",
"clsx": "^2.1.1",
"docusaurus-plugin-copy-page-button": "^0.3.5",
"graphql": "~16.3.0",
"graphql-request": "~4.1.0",
"js-yaml": "~4.1.0",
"nodemon": "^3.0.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remark-gfm": "~4.0.1",
"typescript": "~5.6.2"
}
}