strapi/packages/plugins/sentry/package.json
2023-11-12 11:09:55 +01:00

78 lines
2.0 KiB
JSON

{
"name": "@strapi/plugin-sentry",
"version": "4.15.4",
"description": "Send Strapi error events to Sentry",
"repository": {
"type": "git",
"url": "https://github.com/strapi/strapi.git",
"directory": "packages/plugins/sentry"
},
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
},
"maintainers": [
{
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
}
],
"exports": {
"./strapi-admin": {
"source": "./admin/src/index.js",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./strapi-server.js",
"require": "./strapi-server.js",
"default": "./strapi-server.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "pack-up build",
"clean": "run -T rimraf dist",
"lint": "run -T eslint .",
"prepublishOnly": "yarn clean && yarn build",
"test:unit": "run -T jest",
"test:unit:watch": "run -T jest --watch",
"watch": "pack-up watch"
},
"dependencies": {
"@sentry/node": "6.19.7",
"@strapi/design-system": "1.13.1",
"@strapi/helper-plugin": "4.15.4",
"@strapi/icons": "1.13.0"
},
"devDependencies": {
"@strapi/pack-up": "4.15.4",
"@strapi/strapi": "4.15.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "5.3.4",
"styled-components": "5.3.3"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.1"
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"name": "sentry",
"displayName": "Sentry",
"description": "Send Strapi error events to Sentry.",
"kind": "plugin"
}
}