This repository has no description
864 B
28 lines
1import { defineLexiconConfig } from "@atcute/lex-cli";
2
3export default defineLexiconConfig({
4 files: ["lexicons/custom/**/*.json", "lexicons/pulled/**/*.json", "lexicons/generated/**/*.json"],
5 outdir: "src/lexicon-types/",
6 imports: ["@atcute/atproto"],
7 pull: {
8 outdir: "lexicons/pulled/",
9 sources: [
10 {
11 type: "atproto",
12 mode: "nsids",
13 nsids: [
14 "app.bsky.actor.profile",
15 "network.cosmik.card",
16 "network.cosmik.collection",
17 "network.cosmik.connection",
18 "network.cosmik.defs",
19 "network.cosmik.follow",
20 "org.latha.island",
21 "org.latha.island.citation",
22 "org.latha.island.entity",
23 "org.latha.island.reasoning"
24 ],
25 },
26 ],
27 },
28});