forked from MetaMask/open-rpc-docs-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (115 loc) · 4.12 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@stellar/open-rpc-docs-react",
"version": "0.2.1",
"description": "OpenRPC Docs React for Stellar",
"homepage": "https://github.com/stellar/open-rpc-docs-react#readme",
"bugs": {
"url": "https://github.com/stellar/open-rpc-docs-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/stellar/open-rpc-docs-react.git"
},
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc --project tsconfig.build.json && cp src/ContentDescriptor/ContentDescriptor.css dist/ContentDescriptor/ && cp src/index.css dist/",
"build:clean": "rimraf dist && yarn build",
"build:docs": "typedoc",
"link:setup": "rm -rf ./node_modules/react ./node_modules/react-dom",
"lint": "yarn lint:eslint && yarn lint:constraints && yarn lint:misc --check && yarn lint:dependencies --check",
"lint:constraints": "yarn constraints",
"lint:dependencies": "depcheck && yarn dedupe",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:constraints --fix && yarn lint:misc --write && yarn lint:dependencies",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' '!.yarnrc.yml' '**/*.yaml' --ignore-path .gitignore --no-error-on-unmatched-pattern",
"prepack": "./scripts/prepack.sh",
"test": "jest && jest-it-up",
"test:watch": "jest --watch"
},
"dependencies": {
"@json-schema-tools/traverse": "^1.10.1",
"@open-rpc/examples": "^1.6.1",
"@rjsf/core": "^5.6.2",
"@rjsf/utils": "^5.6.2",
"@rjsf/validator-ajv8": "^5.6.2",
"@stoplight/json-schema-viewer": "^4.16.1",
"@stoplight/markdown-viewer": "^5.7.1",
"@stoplight/mosaic": "^1.53.3",
"@stoplight/mosaic-code-viewer": "^1.53.3",
"hash-color-material": "^1.1.3",
"lodash": "^4.17.15",
"qs": "^6.11.1",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.4.3"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^2.3.1",
"@lavamoat/preinstall-always-fail": "^1.0.0",
"@metamask/eslint-config": "^13.0.0",
"@metamask/eslint-config-jest": "^13.0.0",
"@metamask/eslint-config-nodejs": "^13.0.0",
"@metamask/eslint-config-typescript": "^13.0.0",
"@open-rpc/meta-schema": "^1.11.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.0",
"@types/json-schema": "^7.0.11",
"@types/lodash": "^4.14.194",
"@types/node": "^20",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.0.0",
"@types/react-syntax-highlighter": "^15.5.6",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"depcheck": "^1.4.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import-x": "^0.5.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^47.0.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-it-up": "^2.0.2",
"jest-transform-css": "^6.0.1",
"json-schema-ref-parser": "^7.0.1",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.7.0",
"typedoc": "^0.26.6",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"postcss": "^8.4.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"@stoplight/mosaic>@fortawesome/fontawesome-svg-core": false,
"@stoplight/mosaic>@fortawesome/fontawesome-svg-core>@fortawesome/fontawesome-common-types": false,
"@testing-library/react>@testing-library/dom>aria-query>@babel/runtime-corejs3>core-js-pure": false
}
}
}