honojs-middleware/packages/sentry/package.json

61 lines
1.6 KiB
JSON

{
"name": "@hono/sentry",
"version": "1.2.0",
"description": "Sentry Middleware for Hono",
"main": "dist/index.js",
"type": "commonjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"build": "tsup ./src/index.ts --format esm,cjs --dts",
"prerelease": "yarn build && yarn test:all"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/honojs/middleware.git"
},
"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": {
"@cloudflare/workers-types": "^3.14.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.6.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import-x": "^4.1.1",
"eslint-plugin-n": "^17.10.2",
"hono": "^3.11.7",
"prettier": "^2.7.1",
"publint": "^0.2.7",
"tsup": "^8.0.2",
"typescript": "^4.7.4",
"vitest": "^3.0.8"
}
}