2
0

package.json 994 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. "redis": "^4.7.0"
  30. },
  31. "devDependencies": {
  32. "@types/bcrypt": "^6.0.0",
  33. "@types/jsonwebtoken": "^9.0.7",
  34. "@types/pg": "^8.11.10",
  35. "@types/debug": "^4.1.12",
  36. "hono": "^4.8.5",
  37. "typescript": "^5.8.3",
  38. "vitest": "^3.2.4"
  39. },
  40. "files": [
  41. "src"
  42. ]
  43. }