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

38 lines
789 B
JSON

{
"name": "@hono/react-compat",
"type": "module",
"version": "0.0.1",
"description": "Alias of hono/jsx for replacement of React",
"license": "MIT",
"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"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": {
"import": "./dist/*.js",
"require": "./dist/*.cjs"
}
},
"peerDependencies": {
"hono": ">=4.5.*"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"publint": "^0.3.9",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
}
}