Files
myeasycms-v2/packages/shared/package.json
gbuomprisco 0b22404145 chore: bump version to 2.23.8 and update dependencies
- Updated application version from 2.23.7 to 2.23.8 in package.json.
- Upgraded various dependencies including @turbo/gen to 2.7.5, prettier to 3.8.0, and turbo to 2.7.5.
- Updated package versions in pnpm-lock.yaml and pnpm-workspace.yaml for consistency.
- Enhanced @next/bundle-analyzer, @next/eslint-plugin-next, and other related packages to their latest versions.
- Improved @types/node and @types/react versions for better type support.
2026-01-18 11:19:11 +01:00

36 lines
811 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",
"./registry": "./src/registry/index.ts"
},
"devDependencies": {
"@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@types/react": "catalog:"
},
"dependencies": {
"pino": "^10.2.0"
},
"typesVersions": {
"*": {
"*": [
"src/*"
]
}
}
}