forked from Diizzayy/nuxt-graphql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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": "nuxt-graphql-client",
"version": "0.0.20",
"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": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "yarn build",
"build": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "yarn lint && standard-version && yarn publish --access public && git push --follow-tags"
},
"dependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.4.8",
"@graphql-codegen/typescript-graphql-request": "^4.4.5",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@nuxt/kit": "^3.0.0-rc.0",
"defu": "^6.0.0",
"graphql": "^16.3.0",
"graphql-request": "^4.2.0",
"scule": "^0.2.1"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "9.0.0",
"eslint": "8.13.0",
"nuxt": "^3.0.0-rc.0",
"standard-version": "^9.3.2"
}
}