Lightcord/package.json

59 lines
2.1 KiB
JSON
Raw Normal View History

2020-05-16 23:24:51 +02:00
{
"name": "lightcord",
2020-07-29 18:29:56 +02:00
"version": "0.1.4",
"description": "A simple - customizable - Discord Client.",
"main": "dist/index.js",
2020-05-16 23:24:51 +02:00
"scripts": {
2020-06-27 21:02:48 +02:00
"compile": "node compile.js",
"test": "npm run compile && electron .",
"run": "electron .",
"build": "npm run build:minify && npm run build:electron",
2020-09-06 00:11:14 +02:00
"build:electron": "node build_electron.js",
"build:electron_win": "electron-builder build --win",
"build:electron_linux": "electron-builder build --linux",
"build:electron_mac": "electron-builder build --mac",
2020-09-05 12:14:21 +02:00
"start": "electron .",
2020-06-27 21:02:48 +02:00
"build:minify": "node build.js",
2020-09-05 22:44:39 +02:00
"clean": "node scripts/clean.js",
"clean:all": "node scripts/clean.js --all",
2020-10-01 17:39:55 +02:00
"devInstall": "npm i --save-dev --arch=ia32 electron@9.3.1 && node installSubModules.js && echo \"Everything is installed. You should be able to do npm run test to compile everything and launch.\"",
"devInstall:64": "npm i --save-dev --arch=x64 electron@9.3.1 && node installSubModules.js && echo \"Everything is installed. You should be able to do npm run test to compile everything and launch.\"",
2020-09-17 18:01:16 +02:00
"versions": "echo Electron: && electron -v && echo Typescript: && tsc -v",
"ci": "node ci-deploy"
2020-05-16 23:24:51 +02:00
},
2020-08-14 21:58:19 +02:00
"author": "JeanOUINA",
"license": "MIT",
2020-05-16 23:24:51 +02:00
"dependencies": {
2020-06-13 13:49:36 +02:00
"auto-launch": "^5.0.5",
2020-06-03 21:03:44 +02:00
"custom-electron-titlebar": "^3.2.2-hotfix62",
2020-09-05 20:33:58 +02:00
"glasstron": "0.0.4",
2020-05-16 23:24:51 +02:00
"mkdirp": "^1.0.4",
2020-05-21 01:56:41 +02:00
"node-fetch": "^2.6.0",
2020-05-16 23:24:51 +02:00
"request": "^2.88.2",
"rimraf": "^3.0.2",
2020-06-03 21:03:44 +02:00
"tmp": "^0.2.1",
2020-05-16 23:24:51 +02:00
"yauzl": "^2.10.0"
},
"private": true,
"devDependencies": {
"@types/auto-launch": "^5.0.1",
2020-06-26 21:05:09 +02:00
"@types/electron-devtools-installer": "^2.2.0",
"@types/micromatch": "^4.0.1",
2020-05-16 23:24:51 +02:00
"@types/mkdirp": "^1.0.0",
"@types/node": "12.12.39",
2020-05-16 23:24:51 +02:00
"@types/rimraf": "^3.0.0",
"@types/uuid": "^8.0.0",
2020-05-16 23:24:51 +02:00
"@types/yauzl": "^2.9.1",
2020-09-05 12:14:21 +02:00
"asar": "^3.0.3",
2020-06-27 21:02:48 +02:00
"cross-spawn": "^7.0.3",
2020-10-01 17:39:55 +02:00
"electron": "9.3.1",
"electron-builder": "^22.8.0",
2020-09-05 22:44:39 +02:00
"fast-glob": "^3.2.4",
"fs-extra": "^9.0.1",
"micromatch": "^4.0.2",
2020-07-08 13:57:29 +02:00
"terser": "^4.7.0",
2020-08-12 01:28:21 +02:00
"typescript": "^3.9.7",
2020-07-08 13:57:29 +02:00
"yazl": "^2.5.1"
2020-05-16 23:24:51 +02:00
}
}