Updated various package dependencies including "next", "turbo" and "@kit" packages. Moved some dependencies to devDependencies for better project structure. This aims to optimize the dependency graph, reduce unnecessary installation of packages, and enhance the overall development environment.
47 lines
1019 B
JSON
47 lines
1019 B
JSON
{
|
|
"name": "@kit/contentlayer",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"clean": "git clean -xdf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"lint": "eslint .",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "contentlayer build"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"contentlayer": "0.3.4",
|
|
"next-contentlayer": "0.3.4",
|
|
"rehype-autolink-headings": "^6.0.0",
|
|
"rehype-slug": "^6.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@kit/cms": "workspace:^",
|
|
"@kit/ui": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/cms": "*",
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@kit/ui": "*"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
} |