package.json 971 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@d8d/shared-utils",
  3. "version": "1.0.0",
  4. "type": "module",
  5. "description": "D8D Shared Utility Functions and Database Configuration",
  6. "main": "src/index.ts",
  7. "types": "src/index.ts",
  8. "exports": {
  9. ".": {
  10. "types": "./src/index.ts",
  11. "import": "./src/index.ts",
  12. "require": "./src/index.ts"
  13. }
  14. },
  15. "scripts": {
  16. "typecheck": "tsc --noEmit",
  17. "test": "vitest",
  18. "test:unit": "vitest run tests/unit"
  19. },
  20. "dependencies": {
  21. "@d8d/shared-types": "workspace:*",
  22. "jsonwebtoken": "^9.0.2",
  23. "bcrypt": "^6.0.0",
  24. "typeorm": "^0.3.20",
  25. "pg": "^8.16.3",
  26. "debug": "^4.4.3",
  27. "reflect-metadata": "^0.2.2",
  28. "@hono/zod-openapi": "1.0.2"
  29. },
  30. "devDependencies": {
  31. "@types/bcrypt": "^6.0.0",
  32. "@types/jsonwebtoken": "^9.0.7",
  33. "@types/pg": "^8.11.10",
  34. "@types/debug": "^4.1.12",
  35. "hono": "^4.8.5",
  36. "typescript": "^5.8.3",
  37. "vitest": "^3.2.4"
  38. },
  39. "files": [
  40. "src"
  41. ]
  42. }