2
0

package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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-crud": "workspace:*",
  42. "@d8d/shared-types": "workspace:*",
  43. "@d8d/shared-utils": "workspace:*",
  44. "@hono/zod-openapi": "1.0.2",
  45. "bcrypt": "^6.0.0",
  46. "hono": "^4.8.5",
  47. "typeorm": "^0.3.20",
  48. "zod": "^4.1.12"
  49. },
  50. "devDependencies": {
  51. "@types/bcrypt": "^6.0.0",
  52. "@vitest/coverage-v8": "^3.2.4",
  53. "typescript": "^5.8.3",
  54. "vitest": "^3.2.4"
  55. },
  56. "files": [
  57. "src"
  58. ]
  59. }