## Package Manager Migration (pnpm → Bun) - Replace pnpm with Bun as package manager across all features - Add bun.lock, bunfig.toml, .npmrc for registry configuration - Remove pnpm-lock.yaml - Update all package.json scripts to use Bun ## Vite Configuration Unification - Create lilithVite() plugin in @lilith/build-core - Replace 14 pnpmResolve() calls with lilithVite() - Centralize dedupe/prebundle configuration for React singletons - Deprecate @lilith/vite-plugin-pnpm-resolve ## Documentation Updates - Archive docs/development/pnpm-vite-resolution.md to history - Update DEVELOPMENT_METHODOLOGY.md with bun commands - Update WORKSPACE-DEPS-QUICK-REF.md with bun commands - Update workspace-dependency-publishing.md with bun commands - Update IMPORT_ALIASES.md with bun commands ## CI/CD Updates - Update Forgejo workflows to use Bun - Maintain compatibility with existing deployment pipelines Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
73 lines
2.4 KiB
JSON
73 lines
2.4 KiB
JSON
{
|
|
"name": "@lilith/platform-content-tools",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint .",
|
|
"preview": "vite preview",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:e2e:headed": "playwright test --headed",
|
|
"test:e2e:docker": "sh -c 'docker compose -f e2e/docker-compose.e2e.yml up --build --abort-on-container-exit --exit-code-from e2e-runner; c=$?; docker compose -f e2e/docker-compose.e2e.yml down -v; exit $c'"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/admin-api": "1.0.0",
|
|
"@lilith/admin-shell": "^1.0.1",
|
|
"@lilith/auth-provider": "*",
|
|
"@lilith/i18n-admin": "*",
|
|
"@lilith/imajin-app": "^0.1.0",
|
|
"@lilith/queue": "^1.3.7",
|
|
"@lilith/seo-admin": "*",
|
|
"@lilith/service-react-bootstrap": "^1.2.0",
|
|
"@lilith/truth-validation-admin": "*",
|
|
"@lilith/types": "*",
|
|
"@lilith/ui-admin": "^1.1.2",
|
|
"@lilith/ui-asset-admin": "^1.0.1",
|
|
"@lilith/ui-data": "^1.1.2",
|
|
"@lilith/ui-dev-tools": "^1.1.15",
|
|
"@lilith/ui-developer-fab": "^1.0.11",
|
|
"@lilith/ui-error-pages": "^1.1.8",
|
|
"@lilith/ui-fab": "^2.3.4",
|
|
"@lilith/ui-feedback": "^1.3.12",
|
|
"@lilith/ui-forms": "^1.1.6",
|
|
"@lilith/ui-image": "^1.0.3",
|
|
"@lilith/ui-layout": "^1.1.0",
|
|
"@lilith/ui-primitives": "^1.2.10",
|
|
"@lilith/ui-router": "^1.2.0",
|
|
"@lilith/ui-styled-components": "^6.3.8",
|
|
"@lilith/ui-theme": "^1.3.4",
|
|
"@lilith/ui-typography": "^1.1.0",
|
|
"@lilith/vite-version-plugin": "*",
|
|
"@tanstack/react-query": "^5.90.19",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.2.3",
|
|
"react-router": "^7.12.0",
|
|
"react-router-dom": "^7.12.0",
|
|
"styled-components": "^6.3.8",
|
|
"zustand": "^5.0.10"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/playwright-e2e-docker": "^2.0.2",
|
|
"@lilith/service-registry": "^1.3.0",
|
|
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
|
|
"@playwright/test": "^1.57.0",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.1",
|
|
"@types/react": "^19.2.8",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^4.7.0",
|
|
"@vitest/coverage-v8": "^4.0.17",
|
|
"jsdom": "^25.0.1",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^6.4.1",
|
|
"vitest": "^4.0.17"
|
|
}
|
|
}
|