forked from Joshix-1/Lightcord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "lightcord",
"version": "0.1.9",
"description": "A simple - customizable - Discord Client.",
"main": "dist/index.js",
"scripts": {
"compile": "node scripts/compile.js",
"test": "npm run compile && electron .",
"run": "electron .",
"build": "npm run build:minify && npm run build:electron",
"build:electron": "node scripts/build_electron.js",
"build:electron_win": "electron-builder build --win",
"build:electron_linux": "electron-builder build --linux",
"build:electron_mac": "electron-builder build --mac",
"start": "electron .",
"build:minify": "node scripts/build.js",
"clean": "node scripts/clean.js",
"clean:all": "node scripts/clean.js --all",
"devInstall": "node scripts/devInstall.js",
"versions": "echo Electron: && electron -v && echo Typescript: && tsc -v",
"ci": "node scripts/ci-deploy"
},
"author": "JeanOUINA",
"license": "MIT",
"dependencies": {
"auto-launch": "^5.0.5",
"glasstron": "0.0.4",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.0",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"tmp": "^0.2.1",
"yauzl": "^2.10.0"
},
"private": true,
"devDependencies": {
"@types/auto-launch": "^5.0.1",
"@types/electron-devtools-installer": "^2.2.0",
"@types/micromatch": "^4.0.1",
"@types/mkdirp": "^1.0.0",
"@types/node": "12.12.39",
"@types/rimraf": "^3.0.0",
"@types/uuid": "^8.0.0",
"@types/yauzl": "^2.9.1",
"asar": "^3.0.3",
"dotenv": "^8.2.0",
"electron": "^9.4.4",
"electron-builder": "^22.8.0",
"fast-glob": "^3.2.4",
"fs-extra": "^9.0.1",
"micromatch": "^4.0.2",
"terser": "^4.7.0",
"typescript": "^3.9.7",
"yazl": "^2.5.1"
}
}