mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
sentry-manager is used by Keyman Engine for Android and Keyman Engine for iOS, but not directly by KeymanWeb, nor does it have any dependencies on /web. So it does not make sense to keep it under /web. es-bundling is used by sentry-manager and potentially other /common/web tools in the future, so moving it under /common/tools makes it more consistent in the future. This is part of simplifying the web source tree; these changes do not make significant build performance differences at this time. Test-bot: skip
26 lines
644 B
JSON
26 lines
644 B
JSON
{
|
|
"name": "@keymanapp/web-sentry-manager",
|
|
"description": "Common setup for KeymanWeb's Sentry-based error reporting",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"tsc": "tsc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
},
|
|
"author": "SIL International",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/keymanapp/keyman/issues"
|
|
},
|
|
"homepage": "https://github.com/keymanapp/keyman#readme",
|
|
"devDependencies": {
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"dependencies": {
|
|
"@keymanapp/keyman-version": "*",
|
|
"@sentry/browser": "^8.55.0"
|
|
}
|
|
}
|