-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 843 Bytes
/
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
{
"name": "bsky-hoffbot",
"type": "module",
"dependencies": {
"@skyware/bot": "^0.3.7",
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"cron": "^3.1.0",
"dotenv": "^16.3.1",
"process": "^0.11.10",
"simple-oauth2": "^5.1.0",
"sqlite3": "^5.1.7",
"tsx": "^4.19.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/simple-oauth2": "^5.0.7",
"@types/xml2js": "^0.4.14",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"scripts": {
"start": "mv logs/letterboxd.log logs/letterboxd-$(date +\"%Y-%m-%d_%H-%M-%S\").log 2>/dev/null || true && tsx src/index.ts | tee -a logs/letterboxd.log",
"db:init": "tsx src/database/init.ts",
"bot:get-feed": "tsx src/scripts/refresh-feed.ts",
"bot:now-watching": "tsx src/scripts/now-watching.ts"
}
}