platform-codebase/@packages/@testing/mocks/package.json
Lilith 0c60c4ac96 ♻️ Update dependencies for new package structure
Update all package.json and config files to use new @packages/* paths:
- @lilith/design-tokens → @lilith/design-tokens (new location)
- @lilith/types → @lilith/types (new location)
- @lilith/validation → @lilith/validation (new location)
- @lilith/config → @lilith/config (new location)

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 21:14:13 -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.0",
"typescript": "^5.0.0",
"vitest": "^4.0.16"
}
}