forked from bluesky-social/feed-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.86 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.86 KB
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
58
{
"name": "feed-generator",
"version": "1.0.0",
"description": "atproto feed generator starter kit",
"main": "index.js",
"repository": "git@github.com:bluesky-social/feed-generator.git",
"author": "dholms <dtholmgren@gmail.com>",
"license": "MIT",
"scripts": {
"serve": "node dist/index.js",
"publishFeed": "ts-node scripts/publishFeedGen.ts",
"anounceLabeler": "ts-node scripts/anounceLabeler.ts",
"configLabeler": "ts-node scripts/configLabeler.ts",
"unconfigLabeler": "ts-node scripts/unconfigLabeler.ts",
"unpublishFeed": "ts-node scripts/unpublishFeedGen.ts",
"start": "ts-node src/index.ts",
"tt": "ts-node src/tt.ts",
"build": "tsc",
"codegen": "find lexicons -name '*.json'|xargs npx lex gen-server --yes src/lexicon"
},
"dependencies": {
"@atproto/api": "^0.13.28",
"@atproto/common": "0.4.4",
"@atproto/identity": "^0.2.1",
"@atproto/lex-cli": "0.5.7",
"@atproto/lexicon": "^0.2.2",
"@atproto/repo": "^0.3.2",
"@atproto/syntax": "^0.1.2",
"@atproto/xrpc-server": "^0.7.9",
"@did-plc/lib": "^0.0.4",
"@node-rs/jieba": "^2.0.1",
"better-sqlite3": "^11.3.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"kysely": "^0.27.4",
"multiformats": "^9.9.0",
"opencc-js": "^1.0.5",
"p-queue": "6",
"pino": "8.21.0",
"pino-http": "8.2.1",
"socks-proxy-agent": "^8.0.5",
"stopword": "^3.1.5",
"tinyld": "^1.3.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/express": "^4.17.17",
"@types/node": "^20.1.2",
"inquirer": "^12.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">= 18",
"yarn": "1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}