-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.88 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
{
"name": "krlx",
"productName": "Krlx",
"website": "https://mash.studio/krlx/",
"version": "0.2.0",
"icon": "assets/app.png",
"description": "A simple KRLX radio streaming app",
"main": "src/app.js",
"electronVersion": "4.1.5",
"keywords": [
"electron",
"radio",
"krlx",
"Carleton"
],
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"clean:dist": "rm -rf ./dist",
"build": "npm run build:osx && npm run build:win && npm run build:linux",
"build:osx": "electron-packager . $npm_package_productName --out=dist --ignore='^/dist$' --overwrite --prune --asar --arch=all --platform=darwin --icon=./assets/app.icns --app-version=$npm_package_electronVersion --app-version=$npm_package_version",
"test": "npm run lint",
"lint": "standard"
},
"author": "Mash Ibtesum <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mashnoon33/KRLX-Mini.git",
"docs": "https://github.com/mashnoon33/KRLX-Mini/blob/master/README.md"
},
"bugs": {
"url": "https://github.com/mashnoon33/KRLX-Mini/issues"
},
"devDependencies": {
"devtron": "^1.3.0",
"electron-builder": "^10.8.1",
"electron-installer-dmg": "^0.1.2",
"electron-packager": "^12.1.0",
"electron-prebuilt": "^1.4.1",
"standard": "^8.3.0",
"electron": "^4.1.5"
},
"dependencies": {
"@sentry/electron": "^0.17.1",
"applescript": "^1.0.0",
"auto-launch": "^5.0.1",
"bootstrap": "^4.3.1",
"bootswatch": "^4.3.1",
"chart.js": "^2.2.1",
"countup.js": "^1.7.1",
"dirty-json": "^0.7.0",
"jquery": "^3.4.0",
"js-base64": "^2.5.1",
"json-storage": "^2.1.1",
"localStorage": "^1.0.3",
"menubar": "^5.1.0",
"moment": "^2.17.1",
"semver": "^5.1.0",
"sentry": "^0.1.2",
"superagent": "^3.3.1",
"universal-analytics": "^0.4.20"
}
}