-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "create-hono",
"version": "0.14.3",
"scripts": {
"build": "tsx ./build.ts",
"bin": "./bin",
"test": "vitest --run",
"prepack": "yarn build",
"release": "np",
"lint": "eslint --ext js,ts src",
"lint:fix": "eslint --ext js,ts src --fix",
"format": "prettier src --check",
"format:fix": "prettier src --write"
},
"bin": "./bin",
"files": [
"bin"
],
"author": "Yusuke Wada <https://github.com/yusukebe>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/honojs/create-hono.git"
},
"homepage": "https://honojs.dev",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@hono/eslint-config": "^0.0.2",
"@inquirer/confirm": "^3.1.0",
"@inquirer/input": "^2.1.0",
"@inquirer/select": "^2.2.0",
"@types/node": "^18.11.18",
"@types/yargs-parser": "^21.0.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"esbuild": "^0.16.17",
"eslint": "^8.55.0",
"execa": "^8.0.1",
"giget": "^1.2.3",
"nanospinner": "^1.1.0",
"np": "^7.6.3",
"prettier": "^3.3.3",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^0.34.6"
}
}