-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "@graphiql/plugin-explorer",
"version": "3.2.5",
"repository": {
"type": "git",
"url": "https://github.com/graphql/graphiql",
"directory": "packages/graphiql-plugin-explorer"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"license": "MIT",
"keywords": [
"react",
"graphql",
"graphiql",
"plugin",
"explorer"
],
"files": [
"dist",
"src",
"types"
],
"scripts": {
"prebuild": "rimraf dist types",
"dev": "vite",
"build": "tsc --emitDeclarationOnly && node resources/copy-types.mjs && vite build && UMD=true vite build",
"preview": "vite preview"
},
"dependencies": {
"graphiql-explorer": "^0.9.0"
},
"peerDependencies": {
"@graphiql/react": "^0.28.0",
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0",
"react": "^16.8.0 || ^17 || ^18",
"react-dom": "^16.8.0 || ^17 || ^18"
},
"devDependencies": {
"@graphiql/react": "^0.28.1",
"@vitejs/plugin-react": "^4.3.1",
"graphql": "^16.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.6.3",
"vite": "^5.3.6",
"vite-plugin-svgr": "^4.2.0"
}
}