-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "firebot-atproto-feed-generator",
"version": "1.0.0",
"description": "An atproto (bluesky) feed generator for Firebot posts",
"main": "index.js",
"license": "MIT",
"type": "module",
"repository": "github:crowbartools/firebot-atproto-feed-generator",
"scripts": {
"publishFeed": "ts-node scripts/publishFeedGen.ts",
"unpublishFeed": "ts-node scripts/unpublishFeedGen.ts",
"start": "tsx src/index.ts",
"build": "tsc --skipLibCheck"
},
"dependencies": {
"@atproto/api": "^0.13.18",
"@atproto/identity": "^0.4.3",
"@atproto/lexicon": "^0.4.3",
"@atproto/syntax": "^0.3.1",
"@atproto/xrpc-server": "^0.7.3",
"@skyware/jetstream": "^0.2.0",
"better-sqlite3": "^11.5.0",
"cron": "^3.2.1",
"dotenv": "^16.4.5",
"fastify": "^5.1.0",
"kysely": "^0.27.4",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20.1.2",
"@types/ws": "^8.5.13",
"inquirer": "^12.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">= 18",
"yarn": "1"
}
}