-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 779 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 779 Bytes
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
{
"name": "social-queue",
"version": "1.0.0",
"description": "Minimal social media publishing queue powered by markdown files",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"build": "tsc",
"post:start": "node dist/index.js",
"linkedin:auth": "tsx scripts/linkedin-auth.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.30.1",
"dependencies": {
"@atproto/api": "^0.19.3",
"dotenv": "^17.3.1",
"gray-matter": "^4.0.3",
"megalodon": "^10.2.4",
"nodemailer": "^8.0.3",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/nodemailer": "^7.0.11",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}