feat: whyrating - initial project from turbostarter boilerplate

This commit is contained in:
Alejandro Gutiérrez
2026-02-04 01:54:52 +01:00
commit 5cdc07cd39
1618 changed files with 338230 additions and 0 deletions

36
packages/cms/package.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "@turbostarter/cms",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"build": "content-collections build",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"dev": "content-collections watch",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"typecheck": "tsc --noEmit"
},
"prettier": "@turbostarter/prettier-config",
"dependencies": {
"@content-collections/core": "0.11.1",
"@turbostarter/shared": "workspace:*",
"reading-time": "1.5.0",
"zod": "catalog:"
},
"devDependencies": {
"@content-collections/cli": "0.1.7",
"@content-collections/mdx": "0.2.2",
"@shikijs/rehype": "3.14.0",
"@turbostarter/eslint-config": "workspace:*",
"@turbostarter/prettier-config": "workspace:*",
"@turbostarter/tsconfig": "workspace:*",
"concurrently": "9.2.1",
"eslint": "catalog:",
"prettier": "catalog:",
"typescript": "catalog:"
}
}