-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 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
64
65
66
{
"name": "pheme-cli",
"version": "0.1.0",
"description": "Pheme — an open-source, self-hosted AI news scheduler powered by Google Gemini. Set the topics you care about, pick a time, and get a grounded daily digest delivered to your terminal, a file, or your inbox.",
"type": "module",
"bin": {
"pheme": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit"
},
"keywords": [
"news",
"gemini",
"ai",
"cli",
"scheduler",
"digest",
"rss",
"google-gemini",
"newsletter",
"self-hosted"
],
"author": "lachydotmcg",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lachydotmcg/pheme.git"
},
"bugs": {
"url": "https://github.com/lachydotmcg/pheme/issues"
},
"homepage": "https://github.com/lachydotmcg/pheme#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"@google/genai": "^1.9.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"croner": "^9.0.0",
"dotenv": "^16.4.7",
"marked": "^15.0.7",
"marked-terminal": "^7.3.0",
"nodemailer": "^8.0.10",
"ora": "^8.2.0",
"prompts": "^2.4.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.5",
"@types/nodemailer": "^6.4.17",
"@types/prompts": "^2.4.9",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
}
}