forked from Diizzayy/nuxt-graphql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.23 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
83
84
{
"name": "nuxt-graphql-client",
"version": "0.2.35",
"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 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 build --stub && nuxi prepare playground",
"docs:dev": "nuxi dev docs",
"docs:generate": "nuxi generate docs",
"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": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^6.1.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@nuxt/kit": "^3.9.1",
"defu": "^6.1.4",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"knitwork": "^1.0.0",
"ohash": "^1.1.2",
"scule": "^1.2.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/test-utils": "^3.9.0",
"@vitest/coverage-v8": "^1.1.3",
"eslint": "^8.56.0",
"nuxt": "^3.9.1",
"vitest": "^1.1.3"
},
"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]"
}