package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "lightcord",
  3. "version": "0.1.8",
  4. "description": "A simple - customizable - Discord Client.",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "compile": "node scripts/compile.js",
  8. "test": "npm run compile && electron .",
  9. "run": "electron .",
  10. "build": "npm run build:minify && npm run build:electron",
  11. "build:electron": "node scripts/build_electron.js",
  12. "build:electron_win": "electron-builder build --win",
  13. "build:electron_linux": "electron-builder build --linux",
  14. "build:electron_mac": "electron-builder build --mac",
  15. "start": "electron .",
  16. "build:minify": "node scripts/build.js",
  17. "clean": "node scripts/clean.js",
  18. "clean:all": "node scripts/clean.js --all",
  19. "devInstall": "node scripts/devInstall.js",
  20. "versions": "echo Electron: && electron -v && echo Typescript: && tsc -v",
  21. "ci": "node scripts/ci-deploy"
  22. },
  23. "author": "JeanOUINA",
  24. "license": "MIT",
  25. "dependencies": {
  26. "auto-launch": "^5.0.5",
  27. "custom-electron-titlebar": "^3.2.2-hotfix62",
  28. "glasstron": "0.0.4",
  29. "mkdirp": "^1.0.4",
  30. "node-fetch": "^2.6.0",
  31. "request": "^2.88.2",
  32. "rimraf": "^3.0.2",
  33. "tmp": "^0.2.1",
  34. "yauzl": "^2.10.0"
  35. },
  36. "private": true,
  37. "devDependencies": {
  38. "@types/auto-launch": "^5.0.1",
  39. "@types/electron-devtools-installer": "^2.2.0",
  40. "@types/micromatch": "^4.0.1",
  41. "@types/mkdirp": "^1.0.0",
  42. "@types/node": "12.12.39",
  43. "@types/rimraf": "^3.0.0",
  44. "@types/uuid": "^8.0.0",
  45. "@types/yauzl": "^2.9.1",
  46. "asar": "^3.0.3",
  47. "dotenv": "^8.2.0",
  48. "electron": "^9.4.4",
  49. "electron-builder": "^22.8.0",
  50. "fast-glob": "^3.2.4",
  51. "fs-extra": "^9.0.1",
  52. "micromatch": "^4.0.2",
  53. "terser": "^4.7.0",
  54. "typescript": "^3.9.7",
  55. "yazl": "^2.5.1"
  56. }
  57. }