core-api: appRouter exposes all 4 feature routers + blog procedure shape. core-cms: payloadConfig registers all collections + globals. core-trpc: client + provider exports verified. Spec: §6.1, §6.6
38 lines
1008 B
JSON
38 lines
1008 B
JSON
{
|
|
"name": "@repo/core-trpc",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./next": "./src/providers/next-provider.tsx",
|
|
"./tanstack": "./src/providers/tanstack-provider.tsx"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --noEmit",
|
|
"lint": "eslint .",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run --passWithNoTests"
|
|
},
|
|
"dependencies": {
|
|
"@repo/core-api": "workspace:*",
|
|
"@trpc/client": "^11.0.0",
|
|
"@trpc/react-query": "^11.0.0",
|
|
"@trpc/server": "^11.0.0",
|
|
"@trpc/tanstack-react-query": "^11.1.0",
|
|
"@tanstack/react-query": "^5.66.0",
|
|
"react": "^19.0.0",
|
|
"superjson": "^2.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/core-eslint": "workspace:*",
|
|
"@repo/core-testing": "workspace:*",
|
|
"@repo/core-typescript": "workspace:*",
|
|
"@testing-library/jest-dom": "^6.5.0",
|
|
"@testing-library/react": "^16.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"jsdom": "^25.0.0",
|
|
"vitest": "^3.0.0"
|
|
}
|
|
}
|