-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1014 Bytes
/
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
{
"name": "@jeboehm/vite-plugin-graphql",
"version": "1.0.3",
"description": "Imports .graphql files as persistent query extension or as they are",
"main": "bundle.js",
"scripts": {
"build": "node ./build.js",
"test": "jest src/",
"demo:build": "node ./build.js && cd demo/ && vite build",
"demo:serve": "node ./build.js && cd demo/ && vite serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeboehm/vite-plugin-graphql.git"
},
"keywords": [
"vite-plugin",
"vite",
"graphql",
"persistent-query"
],
"author": "Jeffrey Boehm <j.boehm@ressourcenkonflikt.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeboehm/vite-plugin-graphql/issues"
},
"homepage": "https://github.com/jeboehm/vite-plugin-graphql#readme",
"peerDependencies": {
"vite": "^3 || ^4"
},
"devDependencies": {
"apollo-utilities": "*",
"esbuild": "^0.15.15",
"graphql": "^15",
"jest": "^29.3.1",
"vite": "^3"
}
}