Lightcord/package.json

38 lines
1.5 KiB
JSON
Raw Normal View History

2020-05-16 23:24:51 +02:00
{
"name": "lightcord",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
2020-05-16 23:24:51 +02:00
"scripts": {
"test": "tsc && electron .",
"run": "electron .",
2020-06-10 16:16:33 +02:00
"build": "npm run build:minify && npm run build:electron",
"build:electron": "electron-packager ./distApp --ignore=\"(distApp|builds|\\.ts)\" --arch=ia32 --win32metadata.ProductName=\"Lightcord\" --win32metadata.CompanyName=\"Lightcord Inc.\" --protocol=discord --platform=\"win32,linux\" --out=builds --icon=app.ico --executable-name=\"Lightcord\" --asar.unpack=*.{node,dll} --overwrite",
"build:minify": "node compile.js",
2020-05-23 00:58:53 +02:00
"devInstall": "npm i -g --arch=ia32 electron@8.3.0 && npm i -g typescript && npm i --save-dev @types/node@12.12.39 && npm i --save-dev --arch=ia32 electron@8.3.0 && node installSubModules.js && echo \"Everything is installed. You should be able to do `npm run test` to compile everything and launch.\""
2020-05-16 23:24:51 +02:00
},
"author": "",
"license": "ISC",
"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-05-20 21:37:39 +02:00
"glasstron": "0.0.3",
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/mkdirp": "^1.0.0",
2020-05-20 21:37:39 +02:00
"@types/node": "^12.12.39",
2020-05-16 23:24:51 +02:00
"@types/rimraf": "^3.0.0",
"@types/yauzl": "^2.9.1",
"electron": "8.3.0",
2020-06-13 13:49:36 +02:00
"@types/auto-launch": "^5.0.1",
"terser": "^4.7.0"
2020-05-16 23:24:51 +02:00
}
}