File tree 8 files changed +38
-49
lines changed
8 files changed +38
-49
lines changed Original file line number Diff line number Diff line change 8
8
"scripts" : {
9
9
"build" : " tsc" ,
10
10
"lint" : " eslint . --fix" ,
11
- "start" : " node --loader ts-node/esm src/index.ts --characters= \" ../characters/blobert.character.json \" " ,
11
+ "start" : " node --loader ts-node/esm src/index.ts" ,
12
12
"start:arok" : " node --loader ts-node/esm src/index.ts --characters=\" characters/arok.character.json\" " ,
13
13
"start:service:ruby" : " pm2 start npm --name=\" ruby\" --restart-delay=3000 --max-restarts=10 -- run start:ruby" ,
14
14
"stop:service:ruby" : " pm2 stop ruby" ,
Original file line number Diff line number Diff line change
1
+ export * from "./ask_claude.ts" ;
2
+ export * from "./follow_room.ts" ;
3
+ export * from "./imageGeneration.ts" ;
4
+ export * from "./mute_room.ts" ;
5
+ export * from "./swap.ts" ;
6
+ export * from "./unfollow_room.ts" ;
7
+ export * from "./unmute_room.ts" ;
8
+ export * from "./mute_room.ts" ;
9
+ export * from "./continue.ts" ;
10
+ export * from "./follow_room.ts" ;
11
+ export * from "./ignore.ts" ;
12
+ export * from "./imageGenerationUtils.ts" ;
13
+ export * from "./pumpfun.ts" ;
14
+ export * from "./swap.ts" ;
15
+ export * from "./swapUtils.ts" ;
16
+ export * from "./take_order.ts" ;
Original file line number Diff line number Diff line change
1
+ export { PostgresDatabaseAdapter } from "./postgres.ts" ;
2
+ export { SqliteDatabaseAdapter } from "./sqlite.ts" ;
Original file line number Diff line number Diff line change
1
+ import DirectClient from "./direct" ;
2
+
3
+ export {
4
+ TwitterGenerationClient ,
5
+ TwitterInteractionClient ,
6
+ TwitterSearchClient ,
7
+ } from "./twitter" ;
8
+ export { TelegramClient } from "./telegram" ;
9
+ export { DiscordClient } from "./discord" ;
10
+ export { DirectClient } ;
Original file line number Diff line number Diff line change
1
+ export { TelegramClient } from "./src/index.ts" ;
Original file line number Diff line number Diff line change
1
+ export { TwitterGenerationClient } from "./generate.ts" ;
2
+ export { TwitterSearchClient } from "./search.ts" ;
3
+ export { TwitterInteractionClient } from "./interactions.ts" ;
Original file line number Diff line number Diff line change
1
+ // Exports
2
+ export * from "./actions/index.ts" ;
3
+ export * from "./clients/index.ts" ;
4
+ export * from "./adapters/index.ts" ;
5
+
1
6
import Database from "better-sqlite3" ;
2
7
import fs from "fs" ;
3
8
import yargs from "yargs" ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments