-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.62 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
53
54
55
56
{
"name": "@dreamonkey/graphql-codegen-vue-query-block",
"version": "0.1.2",
"description": "Write your GraphQL documents in Vue SFC `<query>` blocks to generate code with GraphQL Code Generator.",
"author": "Dreamonkey Srl <info@dreamonkey.com> (https://dreamonkey.com)",
"contributors": [
"Yusuf Kandemir <y.kandemir@dreamonkey.com>"
],
"homepage": "https://github.com/dreamonkey/graphql-codegen-stack/tree/main/packages/vue-query-block#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dreamonkey/graphql-codegen-stack.git",
"directory": "packages/vue-query-block"
},
"bugs": {
"url": "https://github.com/dreamonkey/graphql-codegen-stack/issues"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./vite": {
"types": "./dist/vite-plugin.d.ts",
"import": "./dist/vite-plugin.mjs",
"require": "./dist/vite-plugin.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"test": "echo \"TODO: Implement tests\""
},
"peerDependencies": {
"@graphql-codegen/core": "^2.6.0 || ^3.0.0 || ^4.0.0",
"@vue/compiler-sfc": "^3.2.0",
"graphql": "^15.0.0 || ^16.0.0",
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@types/node": "^16.18.12",
"@vue/compiler-sfc": "^3.2.47",
"graphql": "^15.8.0",
"unbuild": "^2.0.0",
"vite": "^2.9.16"
}
}