honojs-middleware/packages/qwik-city/package.json

57 lines
1.3 KiB
JSON

{
"name": "@hono/qwik-city",
"version": "0.0.5",
"description": "Qwik City 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"
},
"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/qwik-city"
},
"homepage": "https://github.com/honojs/middleware",
"peerDependencies": {
"@builder.io/qwik": "^1.2.0",
"@builder.io/qwik-city": "^1.2.0",
"hono": "^3.1.5"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@builder.io/qwik": "^1.2.0",
"@builder.io/qwik-city": "^1.2.0",
"publint": "^0.3.9",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=18"
}
}