-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "dungeon-synth-bsky-feed",
"version": "1.1.3",
"description": "server for the Dungeon Synth feed on bluesky",
"main": "dist/index.js",
"repository": "[email protected]:maximesimoncelli/dungeon-synth-bsky-feed.git",
"author": "maximesimoncelli <[email protected]>",
"license": "MIT",
"engines": {
"node": "20"
},
"scripts": {
"publishFeed": "ts-node scripts/publishFeedGen.ts",
"start": "ts-node src/index.ts",
"build": "tsc -p tsconfig.build.json",
"build:typecheck": "tsc --noEmit -p tsconfig.build.json",
"test": "jest"
},
"dependencies": {
"@atproto/api": "^0.13.32",
"@atproto/identity": "^0.4.5",
"@atproto/lexicon": "^0.4.5",
"@atproto/repo": "^0.6.3",
"@atproto/syntax": "^0.3.1",
"@atproto/xrpc-server": "^0.7.9",
"better-sqlite3": "^11.8.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"kysely": "^0.27.2",
"multiformats": "^9.9.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.4",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}