- Add pnpm workspace and Turborepo configuration - Extract Gateway SDK to packages/sdk as independent package - Add Next.js + shadcn Web client in apps/web - Update root package.json with turbo scripts Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
499 B
JSON
26 lines
499 B
JSON
{
|
|
"name": "@multica/sdk",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"socket.io-client": "^4.8.3",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/uuid": "^11.0.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|