-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 778 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 778 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
{
"name": "daisy-notice",
"version": "0.1.0",
"description": "Pilke DaisyFamily message polling and multi-channel notification tool",
"author": "Charles",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rootSunc/DaisyNotice"
},
"type": "module",
"scripts": {
"auth": "node src/commands/auth.js",
"check-notification-config": "node src/commands/check-notification-config.js",
"poll": "node src/commands/poll.js",
"notify-test": "node src/commands/notify-test.js",
"notify-all": "node src/commands/notify-all.js",
"start": "node src/commands/loop.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"dotenv": "^16.4.5",
"nodemailer": "^9.0.3",
"playwright": "^1.54.2"
}
}