-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.46 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
{
"name": "nuxt-villus",
"version": "0.1.11",
"description": "Villus GraphQL integration with Nuxt.js",
"author": "Pascal Martineau <pascal@lewebsimple.ca>",
"license": "MIT",
"homepage": "https://github.com/lewebsimple/nuxt-villus",
"repository": {
"type": "git",
"url": "git+https://github.com/lewebsimple/nuxt-villus.git"
},
"bugs": {
"url": "https://github.com/lewebsimple/nuxt-villus/issues"
},
"keywords": [
"nuxt",
"module",
"nuxt-module",
"graphql",
"villus"
],
"main": "dist/module.js",
"types": "dist/module.d.ts",
"typings": "types/nuxt-villus.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"build": "tsc",
"release": "yarn build && standard-version && git push --follow-tags origin master && npm publish --access public"
},
"peerDependencies": {
"@nuxtjs/composition-api": ">= 0.22",
"graphql": "14.x || 15.x",
"nuxt": ">= 2.14"
},
"dependencies": {
"@villus/batch": "^1.0.0-rc.15",
"@villus/multipart": "^1.0.0-rc.15",
"cross-fetch": "^3.1.0",
"defu": "^3.2.2",
"graphql-subscriptions-client": "^0.16.0",
"villus": "^1.0.0-rc.15"
},
"devDependencies": {
"@lewebsimple/eslint-config": "^0.2.1",
"@nuxt/types": "^2.15.3",
"@nuxtjs/composition-api": "^0.22.1",
"eslint": "^7.22.0",
"standard-version": "^9.1.1",
"typescript": "^4.2.3"
},
"eslintConfig": {
"extends": [
"@lewebsimple/eslint-config"
]
}
}