honojs-middleware/packages/react-compat/package.json

48 lines
1.0 KiB
JSON

{
"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"
},
"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": "tsup ./src",
"prepack": "yarn build",
"publint": "attw --pack && publint",
"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": {
"@arethetypeswrong/cli": "^0.17.4",
"hono": "^4.8.4",
"publint": "^0.3.9",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
}
}