64 lines
1.7 KiB
JSON
64 lines
1.7 KiB
JSON
{
|
|
"name": "@hono/sentry",
|
|
"version": "1.0.0",
|
|
"description": "Sentry Middleware for Hono",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist/index.js",
|
|
"dist/index.d.ts"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:deno": "deno test deno_test",
|
|
"test:all": "yarn test && yarn test:deno",
|
|
"denoify": "rimraf deno_dist && denoify",
|
|
"build": "rimraf dist && tsc",
|
|
"prerelease": "yarn build && yarn denoify && yarn test:all",
|
|
"release": "np"
|
|
},
|
|
"denoify": {
|
|
"replacer": "dist/replacer.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": "^3.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "^3.14.0",
|
|
"@types/jest": "^28.1.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.32.0",
|
|
"@typescript-eslint/parser": "^5.32.0",
|
|
"denoify": "^1.4.5",
|
|
"eslint": "^8.21.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-define-config": "^1.6.0",
|
|
"eslint-import-resolver-typescript": "^3.4.0",
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
"eslint-plugin-flowtype": "^8.0.3",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"hono": "^3.5.1",
|
|
"jest": "^28.1.2",
|
|
"jest-environment-miniflare": "^2.6.0",
|
|
"np": "^7.6.2",
|
|
"prettier": "^2.7.1",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^28.0.5",
|
|
"typescript": "^4.7.4"
|
|
}
|
|
}
|