-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "inpost",
"version": "0.1.0",
"description": "Notion to LinkedIn publishing pipeline with AI-powered content transformation",
"type": "module",
"bin": {
"inpost": "./dist/src/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/src/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "INTEGRATION=true vitest run tests/integration/",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"config/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"notion",
"linkedin",
"content",
"publishing",
"ai",
"claude",
"automation"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@google/generative-ai": "^0.21.0",
"@notionhq/client": "^5.9.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"dotenv": "^17.2.3",
"evernote": "^2.0.5",
"groq-sdk": "^0.37.0",
"inquirer": "^13.2.2",
"node-cron": "^4.2.1",
"open": "^11.0.0",
"ora": "^9.1.0",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.2.0",
"@types/node-cron": "^3.0.11",
"eslint": "^9.39.2",
"msw": "^2.12.7",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}