platform-codebase/@packages/@testing/mocks/package.json
Lilith a9e68ec97b ⬆️ Update package dependencies and workspace config
- Update package.json dependencies across multiple packages
- Update pnpm-lock.yaml
- Update pnpm-workspace.yaml
- Update tsup.config.ts for queue-infrastructure
- Update @types exports and tsconfig

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 23:28:50 -08:00

38 lines
1,018 B
JSON

{
"name": "@lilith/mocks",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Shared mock utilities - ONLY base value object factories",
"author": {
"name": "QuinnFTW",
"email": "TransQuinnFTW@pm.me",
"url": "https://github.com/transquinnftw"
},
"repository": {
"type": "git",
"url": "https://github.com/transquinnftw/lilith-platform.git"
},
"bugs": {
"url": "https://github.com/transquinnftw/lilith-platform/issues"
},
"homepage": "https://github.com/transquinnftw/lilith-platform#readme",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"lint": "eslint . --ext ts"
},
"dependencies": {
"@lilith/types": "workspace:*"
},
"devDependencies": {
"@faker-js/faker": "^8.0.0",
"@lilith/config": "workspace:*",
"@lilith/configs": "^1.0.3",
"typescript": "^5.0.0",
"vitest": "^4.0.16"
}
}