@rlanz/sentry
Version:
A wrapper around the Sentry SDK to make it easier to use in a AdonisJS application
80 lines (79 loc) • 2.13 kB
JSON
{
"name": "@rlanz/sentry",
"description": "A wrapper around the Sentry SDK to make it easier to use in a AdonisJS application",
"version": "0.3.3",
"engines": {
"node": ">= 20.11.0"
},
"main": "build/index.js",
"type": "module",
"files": [
"build"
],
"exports": {
".": "./build/index.js",
"./middleware": "./build/src/middleware.js",
"./provider": "./build/providers/sentry_provider.js"
},
"scripts": {
"build": "yarn clean && tsc && yarn copy:templates",
"clean": "del-cli build",
"copy:templates": "copyfiles \"stubs/**/*.stub\" --up=\"1\" build",
"format": "prettier --write .",
"lint": "eslint . --ext=.ts",
"prepublishOnly": "yarn build",
"release": "release-it",
"quick:test": "node --enable-source-maps --import=ts-node-maintained/register/esm bin/test.ts",
"test": "c8 yarn quick:test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@poppinss/utils": "^6.9.2",
"@sentry/node": "^9.8.0"
},
"devDependencies": {
"@adonisjs/assembler": "^7.8.2",
"@adonisjs/core": "^6.17.2",
"@adonisjs/eslint-config": "^2.0.0",
"@adonisjs/prettier-config": "^1.4.4",
"@adonisjs/tsconfig": "^1.4.0",
"@japa/assert": "^4.0.1",
"@japa/file-system": "^2.3.2",
"@japa/runner": "^4.2.0",
"@swc/core": "1.11.13",
"@types/node": "^20.17.22",
"c8": "^10.1.3",
"copyfiles": "^2.4.1",
"del-cli": "^6.0.0",
"eslint": "^9.23.0",
"prettier": "^3.5.3",
"release-it": "^18.1.2",
"ts-node-maintained": "^10.9.5",
"typescript": "^5.8.2"
},
"author": "Romain Lanz <romain.lanz@pm.me>",
"license": "MIT",
"keywords": [
"sentry",
"adonisjs",
"adonis"
],
"prettier": "@adonisjs/prettier-config",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}",
"web": true
}
},
"packageManager": "yarn@4.7.0"
}