* add doctor jobs view * change translation * another translation change * clean up * add analaysis detail view to paths config * translation * merge fix * fix path * move components to shared * refactor * imports * clean up
37 lines
896 B
JSON
37 lines
896 B
JSON
{
|
|
"name": "@kit/shared",
|
|
"private": true,
|
|
"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": {
|
|
"./logger": "./src/logger/index.ts",
|
|
"./utils": "./src/utils.ts",
|
|
"./hooks": "./src/hooks/index.ts",
|
|
"./events": "./src/events/index.tsx",
|
|
"./components/*": "./src/components/*.tsx",
|
|
"./registry": "./src/registry/index.ts",
|
|
"./config": "./src/config/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@types/react": "19.1.4"
|
|
},
|
|
"dependencies": {
|
|
"pino": "^9.6.0"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
} |