forked from nuxt-modules/apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.97 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.97 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
73
74
75
{
"name": "@nirvati/nuxt-apollo",
"version": "0.1.0",
"license": "MIT",
"repository": "https://github.com/nirvati/nuxt-apollo",
"homepage": "https://nuxt-apollo.nirvati.eu",
"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": "^4.0.0",
"@nuxt/kit": "^4.2.2",
"@rollup/plugin-graphql": "^2.0.5",
"@vue/apollo-composable": "^4.2.2",
"@vue/apollo-option": "^4.2.2",
"cookie-es": "^2.0.0",
"defu": "^6.1.4",
"destr": "^2.0.5",
"graphql": "^16.12.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^6.0.6",
"jiti": "^2.6.1",
"ohash": "^2.0.11",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@nuxt/eslint-config": "^1.12.1",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.2.2",
"@nuxt/ui": "^4.0.0",
"@types/node": "^24.10.4",
"eslint": "^9.39.2",
"nuxt": "^4.2.2",
"semantic-release": "^25.0.2"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"@nirvati/nuxt-apollo": "link:."
},
"packageManager": "pnpm@10.13.1"
}