package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "redis",
  3. "description": "A modern, high performance Redis client",
  4. "version": "4.6.13",
  5. "license": "MIT",
  6. "main": "./dist/index.js",
  7. "types": "./dist/index.d.ts",
  8. "files": [
  9. "dist/"
  10. ],
  11. "workspaces": [
  12. "./packages/*"
  13. ],
  14. "scripts": {
  15. "test": "npm run test -ws --if-present",
  16. "build:client": "npm run build -w ./packages/client",
  17. "build:test-utils": "npm run build -w ./packages/test-utils",
  18. "build:tests-tools": "npm run build:client && npm run build:test-utils",
  19. "build:modules": "find ./packages -mindepth 1 -maxdepth 1 -type d ! -name 'client' ! -name 'test-utils' -exec npm run build -w {} \\;",
  20. "build": "tsc",
  21. "build-all": "npm run build:client && npm run build:test-utils && npm run build:modules && npm run build",
  22. "documentation": "npm run documentation -ws --if-present",
  23. "gh-pages": "gh-pages -d ./documentation -e ./documentation -u 'documentation-bot <documentation@bot>'"
  24. },
  25. "dependencies": {
  26. "@redis/bloom": "1.2.0",
  27. "@redis/client": "1.5.14",
  28. "@redis/graph": "1.1.1",
  29. "@redis/json": "1.0.6",
  30. "@redis/search": "1.1.6",
  31. "@redis/time-series": "1.0.5"
  32. },
  33. "devDependencies": {
  34. "@tsconfig/node14": "^14.1.0",
  35. "gh-pages": "^6.0.0",
  36. "release-it": "^16.1.5",
  37. "typescript": "^5.2.2"
  38. },
  39. "repository": {
  40. "type": "git",
  41. "url": "git://github.com/redis/node-redis.git"
  42. },
  43. "bugs": {
  44. "url": "https://github.com/redis/node-redis/issues"
  45. },
  46. "homepage": "https://github.com/redis/node-redis",
  47. "keywords": [
  48. "redis"
  49. ]
  50. }