mirror of
https://github.com/different-ai/openwork
synced 2026-04-26 01:25:10 +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>
32 lines
928 B
JSON
32 lines
928 B
JSON
{
|
|
"name": "@openwork/share",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "OPENWORK_DEV_MODE=1 next dev --hostname 0.0.0.0",
|
|
"build": "next build",
|
|
"start": "next start --hostname 0.0.0.0",
|
|
"test": "node --test server/b/render-bundle-page.test.ts server/_lib/package-openwork-files.test.ts server/_lib/publish-security.test.ts server/_lib/render-og-image.test.ts server/_lib/share-utils.test.ts",
|
|
"test:e2e": "playwright test"
|
|
},
|
|
"dependencies": {
|
|
"@vercel/blob": "^0.27.0",
|
|
"botid": "^1.5.11",
|
|
"jsonc-parser": "^3.3.1",
|
|
"next": "16.1.6",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4",
|
|
"sharp": "^0.34.5",
|
|
"ulid": "^2.3.0",
|
|
"yaml": "^2.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.51.1",
|
|
"@types/node": "^25.4.0",
|
|
"@types/react": "18.2.79",
|
|
"@types/react-dom": "18.2.25",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|