a textual notation to locate fields within atproto records (draft spec) microcosm.tngl.io/RecordPath/
8
fork

Configure Feed

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

at main 35 lines 629 B view raw
1{ 2 "name": "recordpath", 3 "version": "0.0.2", 4 "description": "a textual notation to locate fields within atproto records", 5 "type": "module", 6 "exports": { 7 ".": { 8 "types": "./src/index.ts", 9 "default": "./src/index.ts" 10 } 11 }, 12 "files": [ 13 "dist", 14 "src" 15 ], 16 "scripts": { 17 "build": "tsc", 18 "dev": "tsc --watch", 19 "test": "vitest run", 20 "test:watch": "vitest" 21 }, 22 "repository": { 23 "type": "git", 24 "url": "https://tangled.org/microcosm.blue/RecordPath" 25 }, 26 "keywords": [ 27 "atproto" 28 ], 29 "author": "fig", 30 "license": "MIT OR Apache-2.0", 31 "devDependencies": { 32 "typescript": "^5.0.0", 33 "vitest": "^3.0.0" 34 } 35}