forked from yudeunagi/unacast
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
79 lines (79 loc) · 2.76 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
{
"name": "unacast",
"version": "0.8.1",
"description": "掲示板のレスをYoutubeコメント風に表示したいという思想の元に開発されるツール",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack -w",
"lint": "eslint src/**/*.ts",
"build": "electron-rebuild && webpack",
"start": "electron . --asar",
"buildwin": "electron-rebuild && node electron-package.js win32 asar",
"buildmac": "electron-rebuild && node electron-package.js darwin asar",
"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": {
"axios": "^0.28.0",
"body-parser": "^1.19.0",
"cheerio": "1.0.0-rc.12",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dank-twitch-irc": "^3.0.7",
"ejs": "^2.7.1",
"electron-log": "^5.1.7",
"electron-window-state": "^5.0.3",
"encoding-japanese": "^1.0.30",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"https": "^1.0.0",
"iconv-lite": "^0.5.0",
"material-design-lite": "^1.3.0",
"microsoft-cognitiveservices-speech-sdk": "^1.40.0",
"paho-mqtt": "^1.1.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@types/cheerio": "^0.22.18",
"@types/cors": "^2.8.12",
"@types/ejs": "^3.0.2",
"@types/encoding-japanese": "^1.0.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.6",
"@types/express-ws": "^3.0.0",
"@types/find-cache-dir": "^5.0.0",
"@types/material-design-lite": "^1.1.17",
"@types/node": "^22.5.4",
"@types/paho-mqtt": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"electron": "8.2.1",
"electron-packager": "14",
"electron-rebuild": "^3.2.9",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.5.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}