forked from lewebsimple/nuxt3-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@nuxt3-graphql/urql",
"version": "0.5.0",
"description": "@urql/vue for Nuxt.js! ⚡️",
"keywords": [
"nuxt",
"vue",
"graphql",
"urql"
],
"license": "MIT",
"author": "Pascal Martineau <pascal@lewebsimple.ca>",
"bugs": {
"url": "https://github.com/lewebsimple/nuxt3-graphql/issues"
},
"homepage": "https://github.com/lewebsimple/nuxt3-graphql/tree/main/packages/urql#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lewebsimple/nuxt3-graphql.git"
},
"exports": {
".": {
"require": "./index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./plugin": {
"import": "./dist/plugin.mjs"
}
},
"main": "./index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"index.cjs"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint --ext .js,.ts,.vue --fix .",
"prepare": "yarn build",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@nuxt/kit": "latest",
"@urql/devtools": "^2.0.3",
"@urql/exchange-graphcache": "^4.3.6",
"@urql/vue": "^0.6.1",
"graphql": "^15",
"pathe": "^0.2.0",
"vue": "^3"
},
"peerDependencies": {
"@urql/vue": "^0.6",
"graphql": "^15"
}
}