@ydbjs/topic
Version:
YDB Topics client for publish-subscribe messaging. Provides at-least-once delivery, exactly-once publishing, FIFO guarantees, and scalable message processing for unstructured data.
75 lines (74 loc) • 1.82 kB
JSON
{
"name": "@ydbjs/topic",
"version": "6.1.2",
"description": "YDB Topics client for publish-subscribe messaging. Provides at-least-once delivery, exactly-once publishing, FIFO guarantees, and scalable message processing for unstructured data.",
"keywords": [
"ydb",
"database",
"topic",
"streaming",
"messaging",
"typescript"
],
"homepage": "https://github.com/ydb-platform/ydb-js-sdk/tree/main/packages/topic#readme",
"bugs": {
"url": "https://github.com/ydb-platform/ydb-js-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ydb-platform/ydb-js-sdk.git",
"directory": "packages/topic"
},
"author": "YDB Team <team@ydb.tech> (https://ydb.tech)",
"contributors": [
"Vladislav Polyakov <me@polrk.com>"
],
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./codec": "./dist/codec.js",
"./reader": "./dist/reader/index.js",
"./writer": "./dist/writer/index.js",
"./writer2": "./dist/writer2/index.js",
"./message": "./dist/message.js"
},
"engines": {
"node": ">=20.19.0",
"npm": ">=10"
},
"engineStrict": true,
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"test": "vitest --run",
"attw": "attw --pack --profile esm-only"
},
"dependencies": {
"@bufbuild/protobuf": "2.10.1",
"@ydbjs/api": "^6.0.0",
"@ydbjs/core": "^6.0.7",
"@ydbjs/debug": "^6.0.0",
"@ydbjs/error": "^6.0.0",
"@ydbjs/retry": "^6.1.0",
"@ydbjs/value": "^6.0.0",
"ms": "^2.1.3",
"nice-grpc": "^2.1.13",
"xstate": "^5.24.0"
},
"devDependencies": {
"@types/ms": "^2.1.0"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}