-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (38 loc) · 993 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
30
31
32
33
34
35
36
37
38
{
"name": "bsky.rss",
"version": "2.1.2",
"description": "A configurable RSS poster for Bluesky",
"main": "index.js",
"repository": "https://github.com/milanmdev/bsky.rss.git",
"author": "Milan Mehra <milan@milanm.org>",
"license": "MIT",
"scripts": {
"build:dev": "docker rmi -f bsky.rss && docker build . -t bsky.rss",
"release": "sh release.sh",
"start": "tsx ./app/index.ts",
"dev": "tsx --watch ./app/index.ts",
"docker": "bash release.sh"
},
"dependencies": {
"@atproto/api": "0.13.16",
"@atproto/xrpc": "0.6.4",
"axios": "1.7.7",
"dotenv": "^16.4.2",
"feedsub": "^0.7.8",
"html-entities": "2.5.2",
"jimp": "^0.22.12",
"open-graph-scraper": "6.8.2"
},
"devDependencies": {
"@types/node": "22.9.0",
"gts": "6.0.2",
"tsx": "4.19.2",
"typescript": "5.6.3",
"underscore-cli": "^0.2.19"
},
"typeRoots": [
"./node_modules/@types",
"./app/types"
],
"packageManager": "yarn@4.5.1"
}