-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
91 lines (91 loc) · 2.4 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
85
86
87
88
89
90
91
{
"name": "nuxt-graphql-request",
"version": "8.1.1",
"description": "Easy GraphQL client integration with Nuxt.js",
"author": {
"name": "Gomah <[email protected]>"
},
"keywords": [
"vue",
"nuxt",
"nuxtjs",
"nuxt.js",
"graphql",
"graphql-request",
"nuxt-graphql",
"nuxt-graphql-request"
],
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.mjs"
}
},
"build": {
"entries": [
"./src/utils"
]
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/Gomah/nuxt-graphql-request",
"homepage": "https://github.com/Gomah/nuxt-graphql-request",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && standard-version && git push --follow-tags && npm publish",
"lint": "biome check .",
"prepack": "nuxt-module-build build",
"prepublishOnly": "bun run test",
"deps:outdated": "bunx npm-check-updates --format group -i",
"test": "bun run dev:prepare && vitest run",
"test:lint": "biome check .",
"test:watch": "bun run dev:prepare && vitest watch"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
},
"dependencies": {
"@nuxt/kit": "3.13.0",
"@rollup/plugin-graphql": "2.0.4",
"graphql-request": "7.1.0",
"remeda": "2.11.0",
"unplugin": "1.12.2"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@graphql-typed-document-node/core": "3.2.0",
"@nuxt/devtools": "1.3.14",
"@nuxt/module-builder": "0.8.3",
"@nuxt/schema": "3.13.0",
"@nuxt/test-utils": "3.14.1",
"@nuxt/types": "2.18.1",
"@pinia/nuxt": "0.5.4",
"@types/node": "20.14.8",
"cheerio": "1.0.0",
"graphql": "16.9.0",
"graphql-tag": "2.12.6",
"jest-serializer-html": "7.1.0",
"nuxt": "3.13.0",
"pinia": "2.2.2",
"standard-version": "9.5.0",
"typescript": "5.5.4",
"vitest": "2.0.5"
}
}