-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "player-music-lvl",
"version": "1.0.1",
"description": "Es un reproductor de playlist .m3u8 | radio",
"main": "src/app.js",
"scripts": {
"start": "electron .",
"dev": "nodemon --exec npm start",
"eslint": "eslint ./**/*.js",
"build": "electron-builder --win"
},
"author": "ダイレクトコネクト",
"build": {
"appId": "nt.player.musiclvl",
"productName": "Player-music-lvl",
"win": {
"target": "NSIS",
"icon": "icon.ico",
"publisherName": "ダイレクトコネクト",
"signAndEditExecutable": true
},
"nsis": {
"installerIcon": "icon.ico",
"uninstallerIcon": "icon.ico",
"license": "LICENSE.md",
"runAfterFinish": false
}
},
"dependencies": {
"electron-store": "^8.1.0",
"howler": "^2.2.3",
"icy": "^2.1.0",
"iptv-playlist-parser": "^0.12.1",
"jquery": "^3.6.1",
"jquery.transit": "^0.9.12",
"toastify-js": "^1.12.0"
},
"devDependencies": {
"dotenv": "^16.0.2",
"electron": "^20.1.1",
"electron-builder": "^23.3.3",
"eslint": "^8.23.0",
"nodemon": "^2.0.19",
"npm-check-updates": "^16.0.6"
}
}