-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
57 lines (57 loc) · 1.95 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "bossett-bsky-feeds",
"version": "2.1.0",
"description": "basic bsky feedgen",
"main": "index.js",
"repository": "[email protected]:bossett/bsky-feeds.git",
"author": "Bossett <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"publishKeyboards": "tsx scripts/publishKeyboards.ts",
"publishCats": "tsx scripts/publishCats.ts",
"publishScience": "tsx scripts/publishFeedGen.ts",
"publishAuspol": "tsx scripts/publishAuspol.ts",
"publishDads": "tsx scripts/publishDads.ts",
"publishDadsMedia": "tsx scripts/publishDadsMedia.ts",
"publish18plusND": "tsx scripts/publish18plusND.ts",
"publishND": "tsx scripts/publishND.ts",
"publishDiscourse": "tsx scripts/publishDiscourse.ts",
"publishElusive": "tsx scripts/publishElusive.ts",
"publishOverheard": "tsx scripts/publishOverheard.ts",
"publishPAXAus": "tsx scripts/publishPAXAus.ts",
"publishExternal": "tsx scripts/publishExternal.ts",
"publishWords": "tsx scripts/publishWords.ts",
"addSelfToList": "tsx scripts/addSelfToList.ts",
"start": "node ./dist/index.js",
"dev": "tsx ./src/index.ts",
"build": "tsc && tsc-alias"
},
"dependencies": {
"@atcute/client": "^2.0.6",
"@atproto/api": "^0.13.5",
"@atproto/identity": "^0.4.1",
"@atproto/lexicon": "^0.4.1",
"@atproto/repo": "^0.5.0",
"@atproto/syntax": "^0.3.0",
"@atproto/xrpc-server": "^0.6.3",
"@skyware/jetstream": "^0.2.1",
"async-mutex": "^0.5.0",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"follow-redirects": "1.15.8",
"mongodb": "^6.3.0",
"multiformats": "^9.9.0",
"node-fetch-native": "^1.6.2",
"p-ratelimit": "^1.0.1",
"semver": "^7.6.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.28",
"tsc-alias": "1.8.10",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
}
}