platform-codebase/features/email/frontend-users/package.json
2026-02-13 04:48:42 -08:00

54 lines
1.5 KiB
JSON
Executable file

{
"name": "@lilith/email-users",
"version": "1.0.0",
"private": true,
"description": "User-facing email management UI for lilith-platform platform-user",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "lixbuild",
"pretypecheck": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix"
},
"dependencies": {
"@lilith/email-shared": "*",
"@lilith/service-registry": "^1.3.0",
"@lilith/ui-router": "^1.2.0",
"@tanstack/react-query": "^5.90.19",
"react": "^19.2.3",
"react-router": "^7.12.0",
"react-router-dom": "^7.12.0"
},
"devDependencies": {
"@lilith/lix-configs": "^1.0.1",
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
"@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",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^4.0.17"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.11.0"
}
}