-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"name": "@hono/react-compat",
"type": "module",
"version": "0.0.3",
"description": "Alias of hono/jsx for replacement of React",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/honojs/middleware.git",
"directory": "packages/react-compat"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"typecheck": "tsc -b tsconfig.json --noEmit"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": {
"import": "./dist/*.js",
"require": "./dist/*.cjs"
}
},
"peerDependencies": {
"hono": ">=4.5.0"
},
"devDependencies": {
"hono": "^4.11.5",
"tsdown": "^0.21.4",
"typescript": "^5.9.3"
}
}