@atproto/sync
Version:
atproto sync library
53 lines • 1.28 kB
JSON
{
"name": "@atproto/sync",
"version": "0.3.10",
"license": "MIT",
"description": "atproto sync library",
"keywords": [
"atproto",
"sync",
"firehose",
"relay"
],
"homepage": "https://atproto.com",
"repository": {
"type": "git",
"url": "https://github.com/bluesky-social/atproto",
"directory": "packages/sync"
},
"files": [
"./dist",
"./README.md",
"./CHANGELOG.md"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=22"
},
"dependencies": {
"p-queue": "^8.0.0",
"ws": "^8.12.0",
"@atproto/common": "^0.7.2",
"@atproto/repo": "^0.10.6",
"@atproto/lex": "^0.2.2",
"@atproto/identity": "^0.5.6",
"@atproto/xrpc-server": "^0.11.9",
"@atproto/syntax": "^0.7.2"
},
"devDependencies": {
"@types/ws": "^8.5.4",
"jest": "^30.0.0"
},
"scripts": {
"codegen:lex": "lex build --clear --indexFile --lexicons ../../lexicons --include com.atproto.sync.subscribeRepos",
"prebuild": "pnpm run '/^(codegen:.+)$/'",
"build": "tsgo --build tsconfig.build.json",
"test": "NODE_OPTIONS=--experimental-vm-modules ../dev-infra/with-test-redis-and-db.sh jest"
}
}