-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.5 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
{
"name": "vite-plugin-relay-lite",
"version": "0.9.1",
"description": "Vite plugin for more convenient Relay experience",
"homepage": "https://github.com/cometkim/vite-plugin-relay-lite",
"author": {
"name": "Hyeseong Kim",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cometkim/vite-plugin-relay-lite.git"
},
"bugs": {
"url": "https://github.com/cometkim/vite-plugin-relay-lite/issues"
},
"keywords": [
"vite",
"vite-plugin",
"relay"
],
"type": "module",
"main": "./lib/plugin.js",
"types": "./lib/plugin.d.ts",
"exports": {
"types": "./lib/plugin.d.ts",
"import": "./lib/plugin.js",
"require": "./lib/plugin.cjs"
},
"scripts": {
"prepack": "yarn build --clean",
"build": "nanobundle build",
"test": "vitest"
},
"files": [
"src",
"!src/*.test.ts",
"lib"
],
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0",
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"cosmiconfig": "^9.0.0",
"kleur": "^4.1.5",
"magic-string": "^0.30.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/common-tags": "^1",
"@types/node": "^22.0.0",
"common-tags": "^1.8.2",
"graphql": "^16.6.0",
"graphql-15": "npm:[email protected]",
"nanobundle": "^2.0.0",
"typescript": "^5.0.0",
"vite": "^5.2.10",
"vitest": "^2.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 18.0.0"
}
}