forked from Diizzayy/nuxt-graphql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.16 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "nuxt-graphql-client",
"version": "0.2.30",
"keywords": [
"vue",
"nuxt",
"nuxt3",
"nuxt-module",
"gql",
"graphql",
"graphql-client",
"graphql-request",
"codegen",
"graphql-code-generator"
],
"license": "MIT",
"type": "module",
"repository": "diizzayy/nuxt-graphql-client",
"homepage": "https://nuxt-graphql-client.web.app",
"author": {
"name": "Diizzayy <https://diizzayy.com>",
"url": "https://github.com/diizzayy"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "pnpm build",
"build": "nuxt-module-build",
"example": "./scripts/example.sh dev",
"example:build": "./scripts/example.sh build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"test": "pnpm dev:prepare && nuxi prepare examples/basic && nuxi prepare examples/multi-client && vitest run",
"lint": "eslint --ext .js,.ts,.vue .",
"lint:fix": "eslint --fix --ext .js,.ts,.vue ."
},
"dependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^5.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@nuxt/kit": "^3.6.3",
"defu": "^6.1.2",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"knitwork": "^1.0.0",
"ohash": "^1.1.2",
"scule": "^1.0.0"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxt/test-utils": "^3.6.3",
"@nuxtjs/eslint-config-typescript": "latest",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^8.45.0",
"nuxt": "^3.6.3",
"vitest": "^0.33.0"
},
"overrides": {
"node-fetch": "npm:node-fetch-native@latest"
},
"resolutions": {
"node-fetch": "npm:node-fetch-native@latest"
},
"pnpm": {
"overrides": {
"node-fetch": "npm:node-fetch-native@latest"
}
},
"packageManager": "[email protected]"
}