package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@d8d/user-module",
  3. "version": "1.0.0",
  4. "type": "module",
  5. "description": "D8D User Management Module",
  6. "main": "src/index.ts",
  7. "types": "src/index.ts",
  8. "exports": {
  9. ".": {
  10. "import": "./src/index.ts",
  11. "require": "./src/index.ts"
  12. },
  13. "./entities": {
  14. "import": "./src/entities/index.ts",
  15. "require": "./src/entities/index.ts"
  16. },
  17. "./services": {
  18. "import": "./src/services/index.ts",
  19. "require": "./src/services/index.ts"
  20. },
  21. "./schemas": {
  22. "import": "./src/schemas/index.ts",
  23. "require": "./src/schemas/index.ts"
  24. },
  25. "./routes": {
  26. "import": "./src/routes/index.ts",
  27. "require": "./src/routes/index.ts"
  28. }
  29. },
  30. "scripts": {
  31. "build": "tsc",
  32. "dev": "tsc --watch",
  33. "typecheck": "tsc --noEmit",
  34. "test": "vitest",
  35. "test:unit": "vitest run tests/unit",
  36. "test:integration": "vitest run tests/integration",
  37. "test:coverage": "vitest --coverage",
  38. "test:typecheck": "tsc --noEmit"
  39. },
  40. "dependencies": {
  41. "@d8d/shared-types": "workspace:*",
  42. "@d8d/shared-utils": "workspace:*",
  43. "@d8d/shared-crud": "workspace:*",
  44. "typeorm": "^0.3.20",
  45. "bcrypt": "^6.0.0",
  46. "zod": "^4.1.12",
  47. "@hono/zod-openapi": "1.0.2"
  48. },
  49. "devDependencies": {
  50. "typescript": "^5.8.3",
  51. "vitest": "^3.2.4",
  52. "@vitest/coverage-v8": "^3.2.4",
  53. "@types/bcrypt": "^6.0.0"
  54. },
  55. "files": [
  56. "src"
  57. ]
  58. }