52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "@hono/react-renderer",
|
|
"version": "0.3.0",
|
|
"description": "React Renderer Middleware for Hono",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"test": "vitest --run",
|
|
"build": "tsup ./src/index.ts --external hono,react,react-dom --format esm,cjs --dts",
|
|
"publint": "publint"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org",
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/honojs/middleware.git"
|
|
},
|
|
"homepage": "https://github.com/honojs/middleware",
|
|
"peerDependencies": {
|
|
"hono": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/vitest-pool-workers": "^0.1.2",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18.2.17",
|
|
"esbuild": "^0.20.2",
|
|
"hono": "^4.2.3",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"tsup": "^8.0.1",
|
|
"vitest": "1.3.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|