{
  "name": "ram64",
  "version": "0.13.2",
  "description": "Multi-threaded 64bit memory cache database inspired by redis-like features",
  "main": "lib",
  "types": "src",
  "files": [
    "lib",
    "src",
    "docs",
    "package.json",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=16.11.0"
  },
  "scripts": {
    "bench": "cross-env NODE_ENV=production UV_THREADPOOL_SIZE=40 node --max-old-space-size=50000 tools/bench/index.js",
    "bench:profile": "cross-env NODE_ENV=production UV_THREADPOOL_SIZE=40 node --max-old-space-size=50000 --prof tools/bench/index.js",
    "bench:report": "node --prof-process isolate-00000253D5348C70-34736-v8.log > report.txt",
    "build": "npx rimraf ./lib && swc src --out-dir lib",
    "limits": "cross-env NODE_ENV=production UV_THREADPOOL_SIZE=100 node --max-old-space-size=200000 tools/limits/index.js",
    "prepublish": "npm run build",
    "start": "node tools/bench/index.js",
    "test": "jest",
    "watch": "swc src --out-dir lib -w"
  },
  "keywords": [
    "cache",
    "database",
    "redis",
    "ram",
    "ram64",
    "ram-cache",
    "ram-database",
    "memory-cache",
    "threads",
    "multi-threading"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/asilvas/ram64.git"
  },
  "author": "Aaron Silvas",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/asilvas/ram64/issues"
  },
  "homepage": "https://github.com/asilvas/ram64#readme",
  "devDependencies": {
    "@swc/cli": "^0.1.55",
    "@swc/core": "^1.2.136",
    "@swc/jest": "^0.2.17",
    "@tsconfig/node16": "^1.0.2",
    "@types/jest": "^27.4.0",
    "@types/node": "^17.0.13",
    "chokidar": "^3.5.3",
    "cross-env": "^7.0.3",
    "jest": "^28.1.0",
    "redis": "^4.0.3",
    "rimraf": "^3.0.2",
    "ts-jest": "^28.0.3",
    "ts-node": "^10.5.0",
    "typescript": "^4.5.5"
  },
  "dependencies": {
    "farmhash": "^3.2.2",
    "p-limit": "^3.1.0",
    "tiny-lru": "^8.0.1"
  },
  "optionalDependencies": {
    "@swc/core-linux-x64-gnu": "^1.2.139"
  }
}
