platform-codebase/@packages/@testing/mocks/package.json

41 lines
1.1 KiB
JSON
Raw Normal View History

{
"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/service-registry": "^1.3.0",
"@lilith/types": "*"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@lilith/config": "*",
"@lilith/configs": "^2.2.0",
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}