-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
111 lines (111 loc) · 2.66 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@hono/vite-dev-server",
"description": "Vite dev-server plugin for Hono",
"version": "0.18.1",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"type": "module",
"scripts": {
"test:unit": "vitest --run ./src",
"test:e2e": "playwright test -c e2e/playwright.config.ts e2e/e2e.test.ts",
"test:e2e:bun": "playwright test -c e2e-bun/playwright.config.ts e2e-bun/e2e.test.ts",
"test": "yarn test:unit && yarn test:e2e",
"build": "rimraf dist && tsup --format esm,cjs --dts && publint",
"watch": "tsup --watch",
"prerelease": "yarn build && yarn test",
"release": "yarn publish"
},
"files": [
"dist"
],
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./cloudflare": {
"types": "./dist/adapter/cloudflare.d.ts",
"require": "./dist/adapter/cloudflare.cjs",
"import": "./dist/adapter/cloudflare.js"
},
"./node": {
"types": "./dist/adapter/node.d.ts",
"require": "./dist/adapter/node.cjs",
"import": "./dist/adapter/node.js"
},
"./bun": {
"types": "./dist/adapter/bun.d.ts",
"require": "./dist/adapter/bun.cjs",
"import": "./dist/adapter/bun.js"
}
},
"typesVersions": {
"*": {
"types": [
"./dist/types"
],
"cloudflare": [
"./dist/adapter/cloudflare.d.ts"
],
"node": [
"./dist/adapter/node.d.ts"
],
"bun": [
"./dist/adapter/bun.d.ts"
]
}
},
"author": "Yusuke Wada <[email protected]> (https://github.com/yusukebe)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/honojs/vite-plugins.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"homepage": "https://github.com/honojs/vite-plugins",
"devDependencies": {
"@playwright/test": "^1.37.1",
"glob": "^10.3.10",
"hono": "^4.4.11",
"miniflare": "^3.20240701.0",
"playwright": "^1.39.0",
"publint": "^0.2.5",
"rimraf": "^5.0.1",
"tsup": "^7.2.0",
"vite": "^5.4.12",
"vitest": "^0.34.6",
"wrangler": "^3.63.1"
},
"peerDependencies": {
"hono": "*",
"miniflare": "*",
"wrangler": "*"
},
"peerDependenciesMeta": {
"hono": {
"optional": false
},
"miniflare": {
"optional": true
},
"wrangler": {
"optional": true
}
},
"engines": {
"node": ">=18.14.1"
},
"dependencies": {
"@hono/node-server": "^1.12.0",
"minimatch": "^9.0.3"
}
}