-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@nuxtjs/apollo",
"version": "5.0.0-alpha.16",
"license": "MIT",
"repository": "https://github.com/nuxt-modules/apollo-module",
"homepage": "https://apollo.nuxtjs.org",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./config": {
"types": "./dist/config.d.mts",
"import": "./dist/config.mjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/module.d.mts",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build",
"prepack": "pnpm build",
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint --ext .js,.ts,.vue .",
"lint:fix": "eslint --fix --ext .js,.ts,.vue .",
"docs:generate": "nuxt generate docs",
"release": "standard-version --prerelease alpha && git push --follow-tags && pnpm publish --tag next"
},
"dependencies": {
"@apollo/client": "^3.13.8",
"@nuxt/kit": "^4.0.2",
"@rollup/plugin-graphql": "^2.0.5",
"@vue/apollo-composable": "^4.2.2",
"@vue/apollo-option": "^4.2.2",
"defu": "^6.1.4",
"destr": "^2.0.5",
"graphql": "^16.11.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^6.0.6",
"jiti": "^2.5.1",
"ohash": "^2.0.11"
},
"devDependencies": {
"@eslint/compat": "^1.3.1",
"@nuxt/eslint-config": "^1.7.0",
"@nuxt/module-builder": "^1.0.1",
"@nuxt/schema": "^4.0.2",
"@nuxt/ui": "^3.3.0",
"@types/node": "^24.1.0",
"eslint": "^9.31.0",
"nuxt": "^4.0.2"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"@nuxtjs/apollo": "link:."
},
"packageManager": "[email protected]"
}