forked from blocktronics/moebius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.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
{
"name": "moebius",
"version": "2.0.0",
"description": "Modern ANSI Art Editor",
"repository": {
"type": "git",
"url": "https://github.com/blocktronics/moebius.git"
},
"main": "app/moebius.js",
"scripts": {
"start": "electron --no-sandbox --inspect=5858 .",
"build-script": "browserify app/web_client/script.js -o server/script.js",
"build": "node_modules/.bin/electron-builder -mwl",
"build-mac": "node_modules/.bin/electron-builder -m",
"build-win": "node_modules/.bin/electron-builder -w",
"build-linux": "node_modules/.bin/electron-builder -l"
},
"author": "Andy Herbert <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"browserify": "^16.5.1",
"electron": "^12.0.2",
"electron-builder": "^24.9.1",
"express": "^4.17.1"
},
"dependencies": {
"@andreekeberg/imagedata": "^1.0.2",
"@electron/build-tools": "^1.1.0",
"discord-rpc": "^3.1.1",
"electron-debug": "^3.2.0",
"electron-is-dev": "^1.2.0",
"jquery": "^3.5.1",
"json5": "^2.1.3",
"linkifyjs": "^2.1.9",
"minimist": "^1.2.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"upng-js": "^2.1.0",
"ws": "^7.4.6",
"yarn": "^1.22.21"
}
}