mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
* feat(ui): add shared seeded paper gradients Centralize the Paper mesh and grain wrappers so React and Solid apps can reuse the same deterministic seed-based visuals without repeating shader config. Add a standalone demo surface and update existing consumers so the shared package is easier to validate and evolve. * fix(ui): resolve shared package from source Point the shared UI package exports at source files so Next builds do not depend on a prebuilt dist directory. Add Next transpilation for @openwork/ui in Landing and Den Web so monorepo and Vercel builds resolve the package consistently. --------- Co-authored-by: src-opn <src-opn@users.noreply.github.com>
31 lines
769 B
JSON
31 lines
769 B
JSON
{
|
|
"name": "@openwork-ee/landing",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev": "OPENWORK_DEV_MODE=1 next dev --hostname 0.0.0.0",
|
|
"prebuild": "pnpm --dir ../../../packages/ui build",
|
|
"build": "next build",
|
|
"start": "next start --hostname 0.0.0.0",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@openwork/ui": "workspace:*",
|
|
"botid": "^1.5.11",
|
|
"framer-motion": "^12.35.1",
|
|
"lucide-react": "^0.577.0",
|
|
"next": "14.2.5",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "20.12.12",
|
|
"@types/react": "18.2.79",
|
|
"@types/react-dom": "18.2.25",
|
|
"autoprefixer": "10.4.19",
|
|
"postcss": "8.4.38",
|
|
"tailwindcss": "3.4.7",
|
|
"typescript": "5.4.5"
|
|
}
|
|
}
|