atmo.rsvp
1import { defineLexiconConfig } from "@atcute/lex-cli";
2
3export default defineLexiconConfig({
4 files: ["lexicons/**/*.json"],
5 outdir: "src/lexicon-types/",
6 imports: ["@atcute/atproto"],
7 pull: {
8 outdir: "lexicons/",
9 sources: [
10 {
11 type: "git",
12 remote: "https://github.com/flo-bit/contrail.git",
13 pattern: ["lexicons-generated/**/*.json", "lexicons-pulled/**/*.json"],
14 },
15 ],
16 },
17});