This commit primarily focuses on updating various dependencies, including "@types/react", "@tanstack/react-query", "lucide-react", and others. In addition, several adjustments have been made to UI components, such as adding more properties
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@kit/monitoring",
|
|
"private": true,
|
|
"sideEffects": false,
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"clean": "git clean -xdf ../.turbo node_modules",
|
|
"format": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"lint": "eslint ..",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"exports": {
|
|
"./server": "./src/server.ts",
|
|
"./instrumentation": "./src/instrumentation.ts",
|
|
"./hooks": "./src/hooks/index.ts",
|
|
"./components": "./src/components/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/baselime": "workspace:*",
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/monitoring-core": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/sentry": "workspace:*",
|
|
"@kit/tailwind-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@types/react": "^18.3.3",
|
|
"react": "18.3.1"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|