-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "nuxt-codegen",
"description": "GraphQL Code Generator module for Nuxt 3",
"author": "Eugen Istoc",
"version": "1.3.1",
"license": "MIT",
"homepage": "https://github.com/genu/nuxt-codegen",
"bugs": {
"url": "https://github.com/genu/nuxt-codegen/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/genu/nuxt-codegen"
},
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"lint": "eslint",
"test": "echo no tests"
},
"dependencies": {
"@changesets/cli": "^2.25.2",
"@graphql-codegen/cli": "3.3.1",
"@nuxt/kit": "^3.0.0"
},
"devDependencies": {
"@graphql-codegen/typescript": "3.0.4",
"@graphql-codegen/typescript-operations": "3.0.4",
"@graphql-codegen/typescript-vue-urql": "2.3.6",
"@graphql-codegen/urql-introspection": "2.2.1",
"@nuxt/module-builder": "^0.4.0",
"@nuxt/schema": "^3.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"eslint": "^8.26.0",
"nuxt": "^3.0.0"
}
}