forked from honojs/honox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.55 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.55 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "honox",
"version": "0.1.4",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "bun typecheck && bun test:unit && bun test:integration && bun test:e2e",
"test:unit": "vitest --run test/unit",
"test:integration": "bun test:integration:api && bun test:integration:hono-jsx",
"test:integration:hono-jsx": "vitest run -c ./test/hono-jsx/vitest.config.ts ./test/hono-jsx/integration.test.ts",
"test:integration:hono-jsx:watch": "vitest -c ./test/hono-jsx/vitest.config.ts ./test/hono-jsx/integration.test.ts",
"test:integration:api": "vitest run -c ./test/api/vitest.config.ts ./test/api/integration.test.ts",
"test:e2e": "playwright test -c ./test/hono-jsx/playwright.config.ts ./test/hono-jsx/e2e.test.ts",
"typecheck": "tsc --noEmit",
"build": "tsup && publint",
"watch": "tsup --watch",
"lint": "eslint --ext js,ts src test",
"lint:fix": "eslint --ext js,ts src test --fix",
"format": "prettier --check \"src/**/*.{js,ts}\" \"test/**/*.{js,ts}\"",
"format:fix": "prettier --write \"src/**/*.{js,ts}\" \"test/**/*.{js,ts}\"",
"prerelease": "bun run test && bun run build",
"release": "np"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
},
"./factory": {
"types": "./dist/factory/index.d.ts",
"import": "./dist/factory/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js"
},
"./utils/*": {
"types": "./dist/utils/*.d.ts",
"import": "./dist/utils/*.js"
},
"./vite": {
"types": "./dist/vite/index.d.ts",
"import": "./dist/vite/index.js"
},
"./vite/client": {
"types": "./dist/vite/client.d.ts",
"import": "./dist/vite/client.js"
}
},
"typesVersions": {
"*": {
"types": [
"./dist/types"
],
"factory": [
"./dist/factory"
],
"server": [
"./dist/server"
],
"client": [
"./dist/client"
],
"utils/*": [
"./dist/utils/*"
],
"vite": [
"./dist/vite"
],
"vite/client": [
"./dist/vite/client"
]
}
},
"author": "Yusuke Wada <yusuke@kamawada.com> (https://github.com/yusukebe)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/honojs/honox.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"homepage": "https://hono.dev",
"dependencies": {
"@babel/generator": "^7.23.6",
"@babel/parser": "^7.23.6",
"@babel/traverse": "^7.23.6",
"@babel/types": "^7.23.6",
"@hono/vite-dev-server": "^0.7.0"
},
"peerDependencies": {
"hono": ">=4.*"
},
"devDependencies": {
"@hono/eslint-config": "^0.0.4",
"@mdx-js/rollup": "^3.0.0",
"@playwright/test": "^1.41.0",
"@types/babel__generator": "^7",
"@types/babel__traverse": "^7",
"@types/node": "^20.10.5",
"eslint": "^8.56.0",
"glob": "^10.3.10",
"hono": "^4.0.5",
"np": "7.7.0",
"prettier": "^3.1.1",
"publint": "^0.2.7",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.1"
},
"engines": {
"node": ">=18.14.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.6"
}
}