-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.72 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-apollo-plugin",
"version": "0.1.2",
"description": "graphql-typed-document-node compatible GraphQL Code Generator plugin for Vue Apollo",
"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/codegen-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dreamonkey/graphql-codegen-stack.git",
"directory": "packages/codegen-plugin"
},
"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"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"test": "echo \"TODO: Implement tests\""
},
"peerDependencies": {
"@apollo/client": "^3.6.0",
"@graphql-codegen/near-operation-file-preset": "^2.4.4 || ^3.0.0",
"@graphql-codegen/typed-document-node": "^2.3.6 || ^3.0.0 || ^4.0.0 || ^5.0.0",
"@graphql-codegen/typescript": "^2.8.1 || ^3.0.0 || ^4.0.0",
"@graphql-codegen/typescript-operations": "^2.5.6 || ^3.0.0 || ^4.0.0",
"@vue/apollo-composable": "^4.0.0-beta.1",
"graphql": "^15.0.0 || ^16.0.0",
"vue": "^3.2.0"
},
"devDependencies": {
"@types/node": "^16.18.12",
"graphql": "^15.8.0",
"unbuild": "^2.0.0"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^2.7.2"
}
}