-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 KB
/
package.json
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
{
"name": "reddit2ebook",
"version": "1.3.0",
"description": "Turns any subreddit (selftext) to ebook.",
"main": "index.js",
"dependencies": {
"axios": "^0.21.2",
"dotenv": "^6.0.0",
"jimp": "^0.10.1",
"nodepub": "^2.0.7",
"ora": "^3.0.0",
"readline-sync": "^1.4.10",
"unescape": "^1.0.1"
},
"devDependencies": {
"archiver": "^5.0.0",
"pkg": "^4.4.9"
},
"scripts": {
"start": "node index.js",
"build-linux": "pkg package.json --targets=linux-x64 --output reddit2ebook-linux",
"build-windows": "pkg package.json --targets=win-x64 --output reddit2ebook-win.exe",
"build-macos": "pkg package.json --targets=mac-x64 --output reddit2ebook-macos",
"build-release": "pkg package.json --targets=linux-x64,win-x64,mac-x64 && npm run generate-release-zip",
"generate-release-zip": "node generate-release.js"
},
"author": "Racle",
"license": "ISC",
"pkg": {
"scripts": "index.js",
"assets": [
"./node_modules/@jimp/plugin-print/**/*",
"./cover/**"
]
},
"bin": {
"myapp": "./index.js"
}
}