-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
116 lines (116 loc) · 4.22 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "brs-desktop",
"productName": "BrightScript Simulator",
"description": "Roku Device Simulation Tool",
"version": "1.3.2",
"license": "MIT",
"author": {
"name": "Marcelo Lv Cabral",
"email": "[email protected]",
"url": "https://lvcabral.com/"
},
"copyright": "© 2019-2024, Marcelo Lv Cabral",
"homepage": "https://lvcabral.com/brs/",
"bugs": {
"url": "https://github.com/lvcabral/brs-desktop/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lvcabral/brs-desktop"
},
"main": "app/main.js",
"build": {
"appId": "com.lvcabral.brs-desktop.app",
"productName": "BrightScript Simulator",
"artifactName": "brs-desktop-${version}-${platform}-${arch}.${ext}",
"files": [
"app/**/*",
"package.json"
],
"directories": {
"buildResources": "resources",
"output": "dist/${version}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"artifactName": "brs-desktop-${version}-windows.${ext}"
},
"mac": {
"artifactName": "brs-desktop-${version}-macOS.${ext}",
"category": "public.app-category.developer-tools"
},
"linux": {
"target": [
{
"target": "appimage",
"arch": [
"x64",
"armv7l"
]
},
{
"target": "deb",
"arch": "x64"
}
]
}
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "node build/start.js",
"clean": "rimraf ./app/**",
"build": "webpack --config build/webpack.app.config.js",
"dist": "webpack --config build/webpack.app.config.js --env production && electron-builder",
"dist-win": "webpack --config build/webpack.app.config.js --env production && electron-builder -w --x64 --ia32",
"dist-linux32": "webpack --config build/webpack.app.config.js --env production && electron-builder -l --ia32",
"dist-linux64": "webpack --config build/webpack.app.config.js --env production && electron-builder -l --x64",
"dist-deb64": "webpack --config build/webpack.app.config.js --env production && electron-builder --linux deb --x64",
"dist-linuxarm": "webpack --config build/webpack.app.config.js --env production && electron-builder --linux appimage --armv7l",
"release": "npm test && webpack --config build/webpack.app.config.js --env production && electron-builder"
},
"dependencies": {
"@electron/remote": "^2.0.9",
"busboy": "^0.3.1",
"codemirror": "^5.65.12",
"custom-electron-titlebar": "^4.2.8",
"electron-about-window": "^1.14.0",
"electron-preferences": "lvcabral/electron-preferences#build",
"electron-prompt": "^1.7.0",
"fflate": "^0.8.2",
"fs-jetpack": "^4.1.0",
"json-url": "^3.0.0",
"luxon": "^2.0.1",
"minimist": "^1.2.5",
"mousetrap": "^1.6.5",
"nanoid": "^4.0.1",
"node-ssdp": "^4.0.1",
"postman-request": "^2.88.1-postman.33",
"restana": "^3.4.2",
"toastify-js": "^1.12.0",
"vanilla-terminal": "lvcabral/vanilla-terminal",
"ws": "^7.5.0",
"xmlbuilder": "^13.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@types/luxon": "^1.27.1",
"@types/request": "^2.47.0",
"babel-loader": "^8.0.6",
"brs-engine": "^1.7.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"electron": "^25.9.7",
"electron-builder": "^24.13.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.5.3",
"postinstall-postinstall": "^2.1.0",
"source-map-support": "^0.5.6",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^4.1.3",
"webpack-node-externals": "^3.0.0"
}
}