-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
40 lines (40 loc) · 1.49 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
{
"name": "unacast",
"version": "0.1.3",
"description": "掲示板のレスをYoutubeコメント風に表示したいという思想の元に開発されるツール",
"main": "src/main/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"buildwin": "electron-packager ./ unacast --platform=win32 --arch=x64 --icon=icon.png",
"buildmac": "electron-packager ./ unacast --platform=darwin --arch=x64",
"macbuildmemo": "echo macのビルドで --icon=icon.ico を指定するとなぜか The path argument must be one of type string, Buffer, or URL. Received type undefined って言われるので外しておく、あと管理者権限のコマンドプロンプトで実行してね(シンボリックリンク作れないので)",
"changecode": "chcp 65001"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yudeunagi/unacast.git"
},
"author": "yudeunagi",
"license": "ISC",
"bugs": {
"url": "https://github.com/yudeunagi/unacast/issues"
},
"homepage": "https://github.com/yudeunagi/unacast#readme",
"dependencies": {
"body-parser": "^1.19.0",
"ejs": "^2.7.1",
"express": "^4.17.1",
"iconv-lite": "^0.5.0",
"jquery": "^3.4.1",
"jsdom": "^10.1.0",
"material-design-lite": "^1.3.0",
"request-promise": "^4.2.5"
},
"devDependencies": {
"electron": "^1.8.8",
"electron-builder": "^22.1.0",
"electron-packager": "^14.1.0",
"webpack": "^4.41.2"
}
}