-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.6 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.6 KB
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
{
"name": "vite-plugin-relay-lite",
"version": "0.12.0",
"description": "Vite plugin for more convenient Relay experience",
"homepage": "https://github.com/cometkim/vite-plugin-relay-lite",
"author": {
"name": "Hyeseong Kim",
"email": "hey@hyeseong.kim"
},
"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"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"src",
"!src/*.test.ts",
"lib"
],
"scripts": {
"prepack": "yarn build --clean",
"build": "nanobundle build",
"test": "vitest"
},
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0",
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.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": "^24.0.0",
"common-tags": "^1.8.2",
"graphql": "^16.6.0",
"graphql-15": "npm:graphql@15.0.0",
"nanobundle": "^2.0.0",
"typescript": "^5.0.0",
"vite": "^7.0.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">= 18.0.0"
},
"packageManager": "yarn@4.10.3"
}