A plain JavaScript validator for AT Protocol lexicon schemas
at main 21 lines 466 B view raw
1{ 2 "name": "@bigmoves/lexicon", 3 "version": "0.1.3", 4 "license": "MIT", 5 "type": "module", 6 "exports": "./lexicon.js", 7 "scripts": { 8 "test": "vitest run", 9 "test:watch": "vitest", 10 "lint": "biome lint .", 11 "format": "biome format --write .", 12 "check": "biome check .", 13 "typecheck": "tsc" 14 }, 15 "devDependencies": { 16 "@atproto/lexicon": "^0.6.0", 17 "@biomejs/biome": "^2.3.11", 18 "typescript": "^5.9.3", 19 "vitest": "^2.0.0" 20 } 21}