-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 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
{
"name": "@hono/cli",
"version": "0.1.10",
"type": "module",
"bin": {
"hono": "dist/cli.js"
},
"scripts": {
"build": "tsdown",
"watch": "tsdown --watch",
"test": "vitest",
"test:run": "vitest --run",
"test:watch": "vitest watch",
"lint": "eslint --ext js,ts src",
"lint:fix": "eslint --ext js,ts src --fix",
"format": "prettier src --check",
"format:fix": "prettier src --write",
"postbuild": "publint",
"prerelease": "bun run build",
"release": "np"
},
"files": [
"dist"
],
"author": "Yusuke Wada <yusuke@kamawada.com> (https://github.com/yusukebe)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/honojs/cli.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"homepage": "https://hono.dev",
"dependencies": {
"@hono/node-server": "^1.19.5",
"commander": "^14.0.1",
"esbuild": "^0.25.10",
"hono": "^4.9.12"
},
"devDependencies": {
"@babel/parser": "^7.28.5",
"@babel/types": "^7.28.5",
"@hono/eslint-config": "^1.1.1",
"@types/node": "^24.7.0",
"eslint": "^9.37.0",
"magic-string": "^0.30.21",
"np": "^10.2.0",
"pkg-pr-new": "^0.0.62",
"prettier": "^3.6.2",
"publint": "^0.3.14",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"packageManager": "bun@1.2.20"
}