forked from ruslang02/discord-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.61 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
{
"name": "discord-qt",
"version": "0.4.5",
"main": "launch.js",
"author": "Ruslan Garifullin <ruslan.g2002@gmail.com>",
"keywords": [
"discord-qt",
"discord",
"client"
],
"repository": {
"url": "https://github.com/ruslang02/discord-qt"
},
"license": "GPL-3.0",
"bin": {
"discord-qt": "./launch.js"
},
"scripts": {
"build": "webpack",
"build:prod": "webpack -p",
"lint": "eslint src/**/*.ts worker/**/*.ts",
"start": "qode ./dist/index.js",
"start:debug": "qode --max-old-space-size=128 --inspect=0.0.0.0:9229 ./dist/index.js",
"start:watch": "nodemon -e js,ts,css,scss --ignore dist/ --ignore node_modules/ --exec npm run debug",
"postinstall": "node ./downloadNodeGui.js && webpack -p",
"package": "nodegui-packer --pack ./dist",
"package:deb": "node ./build-deb.js",
"watch": "webpack -w"
},
"files": [
"/assets",
"/locales",
"/src",
"/worker",
".npmrc",
"assets.d.ts",
"bindings.js",
"downloadNodeGui.js",
"launch.js",
"tsconfig.json",
"webpack.config.js"
],
"dependencies": {
"@nodegui/nodegui": "^0.26.0",
"audio-mixer": "^2.1.4",
"discord.js": "^12.3.1",
"env-paths": "^2.2.0",
"ffmpeg-static": "^4.2.7",
"i18n": "^0.13.2",
"markdown-it": "^11.0.1",
"merge-stream": "^2.0.0",
"node-notifier": "^8.0.0",
"open": "^7.2.1",
"opusscript": "0.0.7",
"pngjs": "^5.0.0",
"prism-media": "^1.2.2",
"tweetnacl": "^1.0.3",
"twemoji": "^13.0.1",
"whatwg-fetch": "^3.4.1"
},
"devDependencies": {
"@nodegui/packer": "^1.4.1",
"@types/i18n": "^0.8.7",
"@types/markdown-it": "^10.0.2",
"@types/merge-stream": "^1.1.2",
"@types/node": "^14.11.2",
"@types/node-notifier": "^8.0.0",
"@types/pngjs": "^3.4.2",
"@types/twemoji": "^12.1.1",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.1",
"css-loader": "^4.3.0",
"encoding": "^0.1.13",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.1.0",
"follow-redirects": "^1.13.0",
"mini-css-extract-plugin": "^0.11.2",
"native-addon-loader": "^2.0.1",
"node-sass-glob-importer": "^5.3.2",
"sass": "^1.26.11",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^4.2.2",
"thread-loader": "^3.0.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}