Client side atproto account migrator in your web browser, along with services for backups and adversarial migrations.
0

Configure Feed

Select the types of activity you want to include in your feed.

pds-moover / packages / moover / package.json
1.4 kB 60 lines
1{ 2 "name": "@pds-moover/moover", 3 "version": "1.0.10", 4 "description": "Utilities for ATProto PDS migrations and recovery", 5 "repository": { 6 "type": "git", 7 "url": "https://tangled.org/@pds.dad/pds-moover", 8 "directory": "packages/moover" 9 }, 10 "keywords": [ 11 "atproto", 12 "pds", 13 "migration", 14 "recovery", 15 "PDS MOOver" 16 ], 17 "author": "Bailey Townsend", 18 "license": "MIT", 19 "type": "module", 20 "files": [ 21 "dist", 22 "types" 23 ], 24 "main": "./dist/pds-moover.umd.cjs", 25 "module": "./dist/pds-moover.js", 26 "types": "./types/main.d.ts", 27 "exports": { 28 ".": { 29 "types": "./types/main.d.ts", 30 "import": "./dist/pds-moover.js", 31 "require": "./dist/pds-moover.umd.cjs" 32 } 33 }, 34 "scripts": { 35 "dev": "vite", 36 "build": "vite build", 37 "build:watch": "vite build --watch", 38 "gen:types": "tsc -p .", 39 "preview": "vite preview" 40 }, 41 "devDependencies": { 42 "eslint": "^9.34.0", 43 "eslint-plugin-import": "^2.32.0", 44 "vite": "^7.1.7" 45 }, 46 "dependencies": { 47 "@atcute/cbor": "^2.2.7", 48 "@atcute/client": "^4.0.4", 49 "@atcute/crypto": "^2.2.5", 50 "@atcute/did-plc": "^0.1.7", 51 "@atcute/identity-resolver": "^1.1.3", 52 "@atcute/lexicons": "^1.2.2", 53 "@atcute/multibase": "^1.1.6", 54 "@atproto/api": "^0.16.7", 55 "@pds-moover/lexicons": "^1.0.0", 56 "alpinejs": "^3.15.0", 57 "vite-plugin-full-reload": "^1.2.0", 58 "vite-rs-plugin": "1.0.1" 59 } 60}