@atproto/sync
Version:
atproto sync library
49 lines • 1.22 kB
JSON
{
"name": "@atproto/sync",
"version": "0.3.1",
"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"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"p-queue": "^8.0.0",
"ws": "^8.12.0",
"@atproto/common": "^0.6.1",
"@atproto/identity": "^0.5.0",
"@atproto/lex": "^0.1.1",
"@atproto/repo": "^0.10.0",
"@atproto/syntax": "^0.6.1",
"@atproto/xrpc-server": "^0.11.0"
},
"devDependencies": {
"@types/ws": "^8.5.4",
"jest": "^30.0.0",
"typescript": "^6.0.3"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"codegen": "lex build --clear --indexFile --lexicons ../../lexicons --include com.atproto.sync.subscribeRepos",
"prebuild": "pnpm run codegen",
"build": "tsc --build tsconfig.build.json",
"test": "NODE_OPTIONS=--experimental-vm-modules ../dev-infra/with-test-redis-and-db.sh jest"
}
}