-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.27 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "easy-torrent-gui",
"version": "1.0.0",
"description": "A simple GUI for torrent searching and downloading.",
"main": "main.js",
"scripts": {
"clean": "rimraf release",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-all": "electron-builder -mw"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^31.4.0",
"electron-builder": "^24.13.3",
"rimraf": "^6.0.1"
},
"dependencies": {
"axios": "^1.7.4",
"brotli": "^1.3.3",
"torrent-search-api": "^2.1.4"
},
"build": {
"appId": "com.theramann.easytorrent",
"productName": "EasyTorrent",
"files": [
"dist/",
"node_modules/",
"assets/",
"main.js",
"preload.js",
"renderer.js",
"index.html",
"styles.css"
],
"directories": {
"buildResources": "assets",
"output": "release"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "assets/icons/mac/icon.icns",
"category": "public.app-category.utilities"
},
"win": {
"icon": "assets/icons/windows/icon.ico",
"target": [
"nsis"
]
}
}
}