-
Notifications
You must be signed in to change notification settings - Fork 495
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 861 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 861 Bytes
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
{
"name": "hono.dev",
"version": "3.0.0",
"type": "module",
"scripts": {
"dev": "vitepress dev",
"prebuild": "bun ./scripts/build-llm-docs.ts",
"build": "vitepress build",
"prepreview": "vitepress build",
"preview": "wrangler dev",
"format": "prettier --check ./docs ./examples ./scripts index.md",
"format:fix": "prettier --check --write ./docs ./examples ./scripts index.md"
},
"repository": "git@github.com:honojs/website.git",
"author": "Yusuke Wada <yusuke@kamawada.com>",
"private": true,
"license": "MIT",
"devDependencies": {
"@shikijs/vitepress-twoslash": "^1.23.0",
"@types/node": "^22.13.1",
"hono": "^4.10.0",
"prettier": "^3.3.2",
"typescript": "^5.6.2",
"vitepress": "1.6.3",
"vitepress-plugin-group-icons": "^1.0.4",
"vue": "^3.3.4",
"wrangler": "^4.72.0"
}
}