-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.9 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
70
71
72
73
74
75
76
77
78
79
{
"name": "@hono/vite-dev-server",
"description": "Vite dev-server plugin for Hono",
"version": "0.26.1",
"types": "./dist/index.d.mts",
"module": "./dist/index.mjs",
"type": "module",
"scripts": {
"test:unit": "vitest --run ./src",
"test:e2e": "playwright test",
"test": "yarn test:unit && yarn test:e2e",
"build": "yarn run -T tsdown",
"watch": "yarn run -T tsdown --watch",
"prerelease": "yarn build && yarn test",
"release": "yarn publish"
},
"files": [
"dist"
],
"exports": {
".": "./dist/index.mjs",
"./bun": "./dist/adapter/bun.mjs",
"./cloudflare": "./dist/adapter/cloudflare.mjs",
"./node": "./dist/adapter/node.mjs",
"./conninfo": "./dist/conninfo.mjs",
"./dev-server": "./dist/dev-server.mjs",
"./types": "./dist/types.d.mts",
"./utils": "./dist/utils.mjs",
"./package.json": "./package.json"
},
"author": "Yusuke Wada <yusuke@kamawada.com> (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",
"keywords": [
"hono",
"vite-plugin"
],
"devDependencies": {
"@playwright/test": "^1.58.0",
"@types/node": "^24.10.0",
"hono": "^4.4.11",
"miniflare": "^3.20240701.0",
"playwright": "^1.58.0",
"vite": "^6.1.1",
"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.19.11",
"minimatch": "^9.0.3"
}
}