-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "bsky-image-bot",
"version": "0.0.1",
"description": "Bot to automatically publish a directory of images on Bluesky",
"main": "index.js",
"repository": "https://github.com/jasonprado/bsky-image-bot",
"author": "Jason Prado <[email protected]>",
"license": "MIT",
"dependencies": {
"@atproto/api": "^0.3.12",
"cron": "^3.2.1",
"dotenv": "^16.3.1",
"express": "^4.21.1",
"node-cron": "^3.0.3",
"sharp": "^0.32.1"
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"start": "ts-node src/index.ts"
},
"devDependencies": {
"@types/cron": "^2.4.3",
"@types/express": "^5.0.0",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}