-
Notifications
You must be signed in to change notification settings - Fork 198
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "@nuxtjs/apollo",
"version": "5.0.0-alpha.14",
"license": "MIT",
"repository": "https://github.com/nuxt-modules/apollo-module",
"homepage": "https://apollo.nuxtjs.org",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs"
},
"./config": {
"types": "./dist/config.d.ts",
"import": "./dist/config.mjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build",
"prepack": "pnpm build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.ts,.vue --ignore-path .gitignore .",
"release": "standard-version --prerelease alpha && git push --follow-tags && pnpm publish --tag next"
},
"dependencies": {
"@apollo/client": "^3.9.5",
"@nuxt/kit": "^3.10.3",
"@rollup/plugin-graphql": "^2.0.4",
"@vue/apollo-composable": "^4.0.1",
"@vue/apollo-option": "^4.0.0",
"defu": "^6.1.4",
"destr": "^2.0.3",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.15.0",
"jiti": "^1.21.0",
"ohash": "^1.1.3"
},
"devDependencies": {
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.10.3",
"@nuxt/ui": "^2.14.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^20.11.24",
"eslint": "^8.57.0",
"nuxt": "^3.10.3"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"@nuxtjs/apollo": "link:."
},
"packageManager": "[email protected]"
}