-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.07 KB
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
{
"name": "beehiiv-notion-sync",
"version": "0.1.0",
"description": "Sync Beehiiv subscribers and post analytics to Notion databases automatically",
"main": "dist/index.js",
"bin": {
"beehiiv-notion-sync": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"engines": {
"node": ">=18"
},
"keywords": [
"beehiiv",
"notion",
"newsletter",
"sync",
"automation",
"cli"
],
"author": "Theo Lasha <contact@indiegoweb.com>",
"license": "MIT",
"dependencies": {
"@notionhq/client": "^2.2.15",
"axios": "^1.7.2",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"node-cron": "^3.0.3",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.14.0",
"@types/node-cron": "^3.0.11",
"jest": "^29.7.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}