honojs-middleware/packages/sentry/package.json

54 lines
1.2 KiB
JSON

{
"name": "@hono/sentry",
"version": "1.2.1",
"description": "Sentry 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",
"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",
"repository": {
"type": "git",
"url": "git+https://github.com/honojs/middleware.git",
"directory": "packages/sentry"
},
"homepage": "https://github.com/honojs/middleware",
"author": "Samuel Lippert <samuel@driv.ly> (https://github.com/sam-lippert)",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"peerDependencies": {
"hono": ">=3.*"
},
"dependencies": {
"toucan-js": "^4.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"publint": "^0.3.9",
"tsup": "^8.4.0",
"vitest": "^3.0.8"
}
}