package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@d8d/auth-module",
  3. "version": "1.0.0",
  4. "type": "module",
  5. "description": "D8D Authentication 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. "types": "./src/index.ts"
  13. },
  14. "./services": {
  15. "import": "./src/services/index.ts",
  16. "require": "./src/services/index.ts",
  17. "types": "./src/services/index.ts"
  18. },
  19. "./schemas": {
  20. "import": "./src/schemas/index.ts",
  21. "require": "./src/schemas/index.ts",
  22. "types": "./src/schemas/index.ts"
  23. },
  24. "./routes": {
  25. "import": "./src/routes/index.ts",
  26. "require": "./src/routes/index.ts",
  27. "types": "./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/user-module": "workspace:*",
  44. "@hono/zod-openapi": "1.0.2",
  45. "axios": "^1.12.2",
  46. "debug": "^4.4.3",
  47. "hono": "^4.8.5",
  48. "jsonwebtoken": "^9.0.2",
  49. "typeorm": "^0.3.20",
  50. "zod": "^4.1.12"
  51. },
  52. "devDependencies": {
  53. "@types/debug": "^4.1.12",
  54. "@types/jsonwebtoken": "^9.0.7",
  55. "typescript": "^5.8.3",
  56. "vitest": "^3.2.4",
  57. "@vitest/coverage-v8": "^3.2.4",
  58. "@d8d/shared-test-util": "workspace:*"
  59. },
  60. "files": [
  61. "src"
  62. ]
  63. }