-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 765 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 765 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
{
"name": "vivaldi-source-updater",
"version": "1.0.0",
"description": "Automatically updates Vivaldi browser source code in GitHub repository",
"main": "dist/run.js",
"packageManager": "yarn@4.6.0",
"scripts": {
"build": "tsc",
"resource-deletion-check": "node dist/resourceDeletionCheck.js",
"source-publication-check": "node dist/sourcePublicationCheck.js",
"source-update": "node dist/sourceUpdate.js"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.4.1",
"nodemailer": "^6.9.9",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/dotenv": "^8.2.3",
"@types/node": "^20.11.16",
"@types/nodemailer": "^6.4.14",
"typescript": "^5.3.3"
}
}