@atproto/repo
Version:
atproto repo and MST implementation
45 lines • 1.08 kB
JSON
{
"name": "@atproto/repo",
"version": "0.10.0",
"license": "MIT",
"description": "atproto repo and MST implementation",
"keywords": [
"atproto",
"mst"
],
"engines": {
"node": ">=22"
},
"homepage": "https://atproto.com",
"repository": {
"type": "git",
"url": "https://github.com/bluesky-social/atproto",
"directory": "packages/repo"
},
"dependencies": {
"varint": "^6.0.0",
"zod": "^3.23.8",
"@atproto/common": "^0.6.0",
"@atproto/common-web": "^0.5.0",
"@atproto/crypto": "^0.5.0",
"@atproto/lex-cbor": "^0.1.0",
"@atproto/lex-data": "^0.1.0",
"@atproto/syntax": "^0.6.0"
},
"devDependencies": {
"jest": "^30.0.0",
"typescript": "^6.0.3"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:profile": "node --experimental-vm-modules --inspect ../../node_modules/.bin/jest",
"build": "tsc --build tsconfig.build.json"
}
}