This repository was archived by the owner on Jul 10, 2026. It is now read-only.
forked from ZekerTop/ai-cli-complete-notify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.58 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
{
"name": "ai-cli-complete-notify",
"version": "1.2.0",
"description": "AI CLI Complete Notify:多种 AI CLI 任务完成提醒(Claude/Codex/Gemini),支持耗时阈值与多通道推送。",
"main": "desktop/main.js",
"scripts": {
"dev": "electron .",
"dist": "electron-packager . ai-cli-complete-notify-%npm_package_version% --platform=win32 --arch=x64 --out dist --overwrite --prune=true --icon=desktop/assets/tray.ico --ignore=\"\\.env$|\\.env\\.example$|package-zip\\.ps1$\" && node tools/postdist.js",
"dist:portable": "electron-builder --win portable",
"pack": "electron-builder --dir",
"wizard": "node setup-wizard.js",
"test": "node ai-reminder.js config"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"dotenv": "^17.2.3",
"nodemailer": "^6.10.1"
},
"devDependencies": {
"electron": "^32.3.3",
"electron-builder": "^25.1.8",
"electron-packager": "^17.1.2"
},
"build": {
"appId": "com.aicli.complete.notify",
"productName": "ai-cli-complete-notify",
"directories": {
"output": "dist"
},
"files": [
"desktop/**/*",
"src/**/*",
"ai-reminder.js",
"notify-system.js",
"setup-wizard.js",
"telegram-notify.js",
"package.json"
],
"extraResources": [
{
"from": "config.example.json",
"to": "config.example.json"
}
],
"win": {
"icon": "desktop/assets/tray.ico",
"target": [
"portable"
],
"artifactName": "ai-cli-complete-notify-${version}.exe"
}
}
}