UNPKG

hamok

Version:

Lightweight Distributed Object Storage on RAFT consensus algorithm

55 lines (54 loc) 1.32 kB
{ "name": "hamok", "version": "2.6.0", "description": "Lightweight Distributed Object Storage on RAFT consensus algorithm", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "format": "prettier --write \"src/**/*.ts\"", "dev": "nodemon -x ts-node src/main.ts", "build": "tsc", "test": "jest --config jest.config.js", "lint": "eslint --ext .ts src" }, "repository": { "type": "git", "url": "git+https://github.com/balazskreith/hamok-ts.git" }, "keywords": [ "raft", "distributed", "storage" ], "author": "Balazs Kreith", "license": "Apache-2.0", "bugs": { "url": "https://github.com/balazskreith/hamok-ts/issues" }, "resolutions": { "wrap-ansi": "7.0.0", "string-width": "4.1.0" }, "homepage": "https://github.com/balazskreith/hamok-ts#readme", "dependencies": { "@bufbuild/protobuf": "^1.10.0", "pino": "^9.3.2", "uuid": "^9.0.0" }, "devDependencies": { "@tsconfig/node20": "^1.0.2", "@types/events": "^3.0.0", "@types/jest": "^29.5.1", "@types/pino": "^7.0.5", "@types/uuid": "^10.0.0", "@typescript-eslint/eslint-plugin": "^6.8.0", "@typescript-eslint/parser": "^6.8.0", "eslint": "^8.44.0", "jest": "^29.5.0", "nodemon": "^3.1.0", "prettier": "^2.8.8", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "typescript": "^5.1.6" } }