forked from ermanc/ChromeiQL
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.05 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
{
"name": "graphiql-extension",
"description": "Thin multi-endpoint wrapper for GraphiQL as a Chrome extension",
"main": "js/index.js",
"scripts": {
"build": "esbuild js/index.jsx --bundle --minify --outfile=dist/index.js",
"dev": "esbuild js/index.jsx --bundle --minify --outfile=dist/index.js --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "github:PowerKiKi/graphiql-extension",
"keywords": [
"graphql",
"graphiql",
"graphiql-extension"
],
"author": "Erman Celen <[email protected]> (https://github.com/ermanc)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PowerKiKi/graphiql-extension/issues"
},
"homepage": "https://github.com/PowerKiKi/graphiql-extension",
"dependencies": {
"@codemirror/language": "^6.8.0",
"esbuild": "^0.18.2",
"graphiql": "^2.4.7",
"graphql": "^16.6.0",
"graphql-ws": "^5.13.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}