@hivellm/synap
Version:
Official TypeScript/JavaScript SDK for Synap - High-Performance In-Memory Key-Value Store & Message Broker
84 lines (82 loc) • 2.3 kB
JSON
{
"name": "@hivellm/synap",
"version": "0.2.0-beta.2",
"description": "Official TypeScript/JavaScript SDK for Synap - High-Performance In-Memory Key-Value Store & Message Broker",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "vitest run",
"test:unit": "vitest run --exclude '**/*.s2s.test.ts'",
"test:s2s": "RUN_S2S=true vitest run src/__tests__/*.s2s.test.ts",
"test:all": "npm run test:unit && npm run test:s2s",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build && npm run test:unit",
"publish:wsl": "export BROWSER=wslview && npm publish --tag beta"
},
"keywords": [
"synap",
"kv-store",
"key-value",
"message-queue",
"queue",
"pubsub",
"redis-alternative",
"in-memory",
"typescript",
"javascript",
"client",
"sdk"
],
"author": "HiveLLM Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hivellm/synap.git",
"directory": "sdks/typescript"
},
"bugs": {
"url": "https://github.com/hivellm/synap/issues"
},
"homepage": "https://github.com/hivellm/synap#readme",
"dependencies": {
"rxjs": "^7.8.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}