-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 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
{
"name": "vite-plugin-typed-graphql",
"version": "3.1.0",
"description": "Vite Plugin which enables the import of Typed-Document-Nodes directly from `.gql` / `.graphql` files, to allow for type-safe GraphQL implementations.",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"bin": {
"build-gql-declarations": "./dist/build-gql-declarations.mjs"
},
"homepage": "https://github.com/arma-events/vite-plugin-typed-graphql#readme",
"repository": {
"type": "git",
"url": "https://github.com/arma-events/vite-plugin-typed-graphql.git"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/arma-events/vite-plugin-typed-graphql/issues",
"email": "derzade@gmail.com"
},
"scripts": {
"build": "unbuild",
"lint": "eslint --ext .js,.ts ./src",
"fmt": "prettier --write .",
"prepare": "npm run build"
},
"keywords": [
"vite",
"plugin",
"graphql",
"gql",
"typed",
"typescript"
],
"author": "Jonas Schade <derzade@gmail.com>",
"license": "MIT",
"dependencies": {
"@graphql-codegen/core": "^4.0.2",
"@graphql-codegen/typed-document-node": "^5.0.7",
"@graphql-codegen/typescript": "^4.0.7",
"@graphql-codegen/typescript-operations": "^4.2.1",
"@graphql-tools/graphql-file-loader": "^8.0.1",
"@graphql-tools/import": "^7.0.1",
"@graphql-tools/load": "^8.0.2",
"commander": "^12.1.0",
"esbuild": "^0.21.4",
"fast-glob": "^3.3.2",
"graphql": "^16.8.1",
"ts-morph": "^22.0.0"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.1",
"typescript": "^5.4.5",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"vite": "4 - 6"
}
}