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
994 B
JSON
31 lines
994 B
JSON
{
|
|
"name": "@openwork-ee/den-web",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev": "OPENWORK_DEV_MODE=1 NEXT_PUBLIC_POSTHOG_KEY= NEXT_PUBLIC_POSTHOG_API_KEY= next dev --hostname 0.0.0.0 --port 3005",
|
|
"dev:local": "sh -lc 'OPENWORK_DEV_MODE=1 NEXT_PUBLIC_POSTHOG_KEY= NEXT_PUBLIC_POSTHOG_API_KEY= next dev --hostname 0.0.0.0 --port ${DEN_WEB_PORT:-3005}'",
|
|
"prebuild": "pnpm --dir ../../../packages/ui build",
|
|
"build": "next build",
|
|
"start": "next start --hostname 0.0.0.0 --port 3005",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@openwork/ui": "workspace:*",
|
|
"@paper-design/shaders-react": "0.0.72",
|
|
"lucide-react": "^0.577.0",
|
|
"next": "16.2.1",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "20.12.12",
|
|
"@types/react": "19.2.14",
|
|
"@types/react-dom": "19.2.3",
|
|
"autoprefixer": "10.4.19",
|
|
"postcss": "8.4.38",
|
|
"tailwindcss": "3.4.7",
|
|
"typescript": "5.4.5"
|
|
}
|
|
}
|