a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
at trunk 363 B view raw
1import { defineLexiconConfig } from '@atcute/lex-cli'; 2 3export default defineLexiconConfig({ 4 files: ['lexicons/**/*.json'], 5 outdir: 'lib/lexicons/', 6 7 pull: { 8 outdir: 'lexicons/', 9 clean: true, 10 sources: [ 11 { 12 type: 'git', 13 remote: 'https://github.com/bluesky-social/atproto.git', 14 pattern: ['lexicons/com/atproto/**/*.json'], 15 }, 16 ], 17 }, 18});