-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "feed-generator",
"version": "1.0.0",
"description": "atproto feed generator starter kit",
"main": "index.js",
"repository": "[email protected]:bluesky-social/feed-generator.git",
"author": "dholms <[email protected]>",
"license": "MIT",
"scripts": {
"publishFeed": "ts-node scripts/publish-feed-gen.ts",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"build": "ts-node scripts/prepare-dist-folder.ts && tsc"
},
"dependencies": {
"@atproto/api": "^0.13.5",
"@atproto/lexicon": "^0.4.1",
"@atproto/repo": "^0.4.3",
"@atproto/syntax": "^0.3.0",
"@atproto/xrpc-server": "^0.6.3",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-prom-bundle": "^7.0.0",
"fasttext": "^1.0.0",
"ix": "^7.0.0",
"jws": "^4.0.0",
"kysely": "^0.27.4",
"lru-cache": "^11.0.0",
"morgan": "^1.10.0",
"multiformats": "^9.9.0",
"pg": "^8.12.0",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"prom-client": "^15.1.3",
"tslib": "^2.7.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/express": "^4.17.21",
"@types/jws": "^3.2.10",
"@types/morgan": "^1.9.9",
"@types/node": "^22.5.2",
"@types/pg": "^8.11.8",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}