forked from bluesky-social/feed-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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": "feed-generator",
"version": "1.0.0",
"description": "atproto feed generator starter kit",
"repository": "[email protected]:bluesky-social/feed-generator.git",
"license": "MIT",
"author": "dholms <[email protected]>",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch --env-file .env src/index.js",
"codestyle": "prettier --write \"./**/*.{js,md}\"",
"lint": "eslint --fix . --ext .js --ext md",
"publishFeed": "node scripts/publishFeedGen.js"
},
"lint-staged": {
"*.{js,json,md,yaml}": [
"prettier --write"
],
"*.js": [
"eslint --cache --fix"
]
},
"release": {
"branches": "main"
},
"dependencies": {
"@atproto/api": "^0.9.6",
"@atproto/identity": "^0.3.2",
"@atproto/lexicon": "^0.3.1",
"@atproto/repo": "^0.3.6",
"@atproto/syntax": "^0.1.5",
"@atproto/xrpc-server": "^0.4.2",
"@fastify/compress": "^7.0.0",
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@trpc/server": "^10.45.1",
"better-sqlite3": "^9.4.0",
"fastify": "^4.26.0",
"kysely": "^0.27.2",
"multiformats": "^13.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-node": "^11.1.0",
"prettier": "^3.2.5"
},
"engines": {
"node": ">=20"
}
}