-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
98 lines (98 loc) · 2.48 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "webamp-desktop",
"version": "0.3.0",
"description": "Desktop version of Winamp 2.9 reimplementation in HTML5 and JS",
"main": "main.js",
"scripts": {
"start": "yarn run build && electron .",
"watch": "parcel watch --public-url ./ ./src/index.html ./src/preload/index.ts",
"build": "yarn run copy && yarn build:src",
"build:src": "parcel build --public-url ./ ./src/index.html ./src/preload/index.ts",
"electron": "./node_modules/.bin/electron .",
"copy": "cp -r ./bundled/* ./dist",
"test": "jest",
"pack": "yarn run pack:win && yarn run pack:linux && yarn run pack:mac",
"pack:win": "build -w --x64",
"pack:linux": "build -l --x64",
"pack:mac": "build -m --x64",
"dist": "yarn run build && build --x64"
},
"homepage": "https://github.com/durasj/webamp-desktop",
"repository": "https://github.com/durasj/webamp-desktop",
"author": "Jakub Duras <jakub@duras.me>",
"license": "MIT",
"dependencies": {
"electron-is-dev": "^2.0.0",
"electron-log": "^5.0.0",
"electron-updater": "^6.1.4",
"html-to-text": "^9.0.5",
"left-clicky": "0.1.1",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"electron": "^27.0.3",
"electron-builder": "^24.6.4",
"electron-debug": "^3.2.0",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"parcel-bundler": "^1.12.5",
"spectron": "^19.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"webamp": "^1.5.0"
},
"browserslist": [
"Chrome 118"
],
"build": {
"appId": "me.duras.webamp-desktop",
"productName": "Webamp desktop",
"copyright": "Copyright © 2018 Jakub Ďuraš",
"files": [
"!.*${/*}",
"!src/*.*",
"!artifacts${/*}",
"!docs${/*}",
"!bundled${/*}"
],
"directories": {
"buildResources": "res",
"output": "artifacts"
},
"mac": {
"category": "public.app-category.music",
"target": "default"
},
"win": {
"target": "nsis-web"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "AudioVideo"
},
"publish": {
"provider": "github",
"owner": "durasj",
"releaseType": "draft"
}
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*(\\.|/)spec)\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}