2024-06-12 21:38:58 +08:00
|
|
|
{
|
|
|
|
"name": "@hono/react-compat",
|
|
|
|
"type": "module",
|
2025-06-23 08:51:45 +08:00
|
|
|
"version": "0.0.3",
|
2024-06-12 21:38:58 +08:00
|
|
|
"description": "Alias of hono/jsx for replacement of React",
|
|
|
|
"license": "MIT",
|
2025-06-23 08:38:45 +08:00
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://registry.npmjs.org",
|
|
|
|
"access": "public"
|
|
|
|
},
|
2025-06-23 07:53:57 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/honojs/middleware.git",
|
|
|
|
"directory": "packages/react-compat"
|
|
|
|
},
|
2024-06-12 21:38:58 +08:00
|
|
|
"module": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
2025-03-27 14:33:45 +08:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2024-06-12 21:38:58 +08:00
|
|
|
"scripts": {
|
2025-03-27 14:33:45 +08:00
|
|
|
"build": "tsup ./src",
|
|
|
|
"prepack": "yarn build",
|
2025-04-02 17:28:02 +08:00
|
|
|
"publint": "attw --pack && publint",
|
2025-06-19 15:52:41 +08:00
|
|
|
"typecheck": "tsc -b tsconfig.json --noEmit"
|
2024-06-12 21:38:58 +08:00
|
|
|
},
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"import": "./dist/index.js",
|
|
|
|
"require": "./dist/index.cjs"
|
|
|
|
},
|
|
|
|
"./*": {
|
|
|
|
"import": "./dist/*.js",
|
|
|
|
"require": "./dist/*.cjs"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2025-07-03 18:04:24 +08:00
|
|
|
"hono": ">=4.5.0"
|
2024-06-12 21:38:58 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2025-03-27 14:33:45 +08:00
|
|
|
"@arethetypeswrong/cli": "^0.17.4",
|
2025-07-05 17:37:06 +08:00
|
|
|
"hono": "^4.8.4",
|
2025-03-27 14:33:45 +08:00
|
|
|
"publint": "^0.3.9",
|
2025-04-02 17:28:02 +08:00
|
|
|
"tsup": "^8.4.0",
|
|
|
|
"typescript": "^5.8.2"
|
2024-06-12 21:38:58 +08:00
|
|
|
}
|
2025-03-27 14:49:10 +08:00
|
|
|
}
|