The monitoring package has been significantly refactored to improve the granularity of error capture. Code from the 'capture-exception.ts' files in different locations have been deleted and replaced by a more unified approach in the 'use-baselime.ts' and 'use-sentry.ts' hooks. The README documentation has also been updated to reflect these changes and provide additional information about error monitoring setup and usage.
39 lines
747 B
Handlebars
39 lines
747 B
Handlebars
{
|
|
"name": "@kit/{{ name }}",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"exports": {
|
|
".": "./server.ts"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"lint": "eslint .",
|
|
"format": "prettier --check \"**/*.{mjs,ts,md,json}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "0.2.0",
|
|
"@kit/prettier-config": "^0.1.0",
|
|
"@kit/tsconfig": "^0.1.0",
|
|
"eslint": "^8.56.0",
|
|
"prettier": "^3.1.1",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"@kit/eslint-config/base"
|
|
]
|
|
},
|
|
"prettier": "@kit/prettier-config"
|
|
}
|