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

62 lines
1.4 KiB
JSON

{
"name": "@hono/react-renderer",
"version": "1.0.1",
"description": "React Renderer Middleware for Hono",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts",
"prepack": "yarn build",
"publint": "attw --pack && publint",
"typecheck": "tsc -b tsconfig.json",
"test": "vitest"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/honojs/middleware.git",
"directory": "packages/react-renderer"
},
"homepage": "https://github.com/honojs/middleware",
"peerDependencies": {
"hono": "*",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@cloudflare/vitest-pool-workers": "^0.7.8",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.2",
"publint": "^0.3.9",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"engines": {
"node": ">=18"
}
}