## 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>
74 lines
1.9 KiB
JSON
Executable file
74 lines
1.9 KiB
JSON
Executable file
{
|
|
"name": "@lilith/ui-developer-fab",
|
|
"version": "1.0.7",
|
|
"description": "Unified developer tools FAB with configurable categories for access levels, profiles, and storage management",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --project tsconfig.json",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint src --fix",
|
|
"lint:check": "eslint src",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/service-registry": "^1.3.0",
|
|
"@lilith/types": "*",
|
|
"@lilith/ui-dev-tools": "^1.1.15",
|
|
"@lilith/ui-fab": "^2.3.4",
|
|
"lucide-react": "^0.460.0"
|
|
},
|
|
"peerDependencies": {
|
|
"framer-motion": "^11.0.0 || ^12.0.0",
|
|
"react": "^18.0.0 || ^19.0.0",
|
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
"styled-components": "^6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.2",
|
|
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.1",
|
|
"@types/node": "^25.0.9",
|
|
"@types/react": "^19.2.8",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@typescript-eslint/eslint-plugin": "^8.53.0",
|
|
"@typescript-eslint/parser": "^8.53.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"jsdom": "^26.1.0",
|
|
"typescript-eslint": "^8.53.0",
|
|
"vite": "^7.3.1",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
},
|
|
"keywords": [
|
|
"lilith",
|
|
"dev-tools",
|
|
"developer-fab",
|
|
"floating-action-button",
|
|
"development"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"README.md",
|
|
"package.json"
|
|
]
|
|
}
|