package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@electron/universal",
  3. "version": "1.3.4",
  4. "description": "Utility for creating Universal macOS applications from two x64 and arm64 Electron applications",
  5. "main": "dist/cjs/index.js",
  6. "module": "dist/esm/index.js",
  7. "license": "MIT",
  8. "keywords": [
  9. "electron",
  10. "apple silicon",
  11. "universal"
  12. ],
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/electron/universal.git"
  16. },
  17. "engines": {
  18. "node": ">=8.6"
  19. },
  20. "files": [
  21. "dist/*",
  22. "entry-asar/*",
  23. "README.md"
  24. ],
  25. "author": "Samuel Attard",
  26. "scripts": {
  27. "build": "tsc && tsc -p tsconfig.esm.json",
  28. "lint": "prettier --check \"src/**/*.ts\"",
  29. "prepublishOnly": "npm run build",
  30. "test": "exit 0"
  31. },
  32. "devDependencies": {
  33. "@continuous-auth/semantic-release-npm": "^2.0.0",
  34. "@types/debug": "^4.1.5",
  35. "@types/fs-extra": "^9.0.4",
  36. "@types/minimatch": "^3.0.5",
  37. "@types/node": "^14.14.7",
  38. "@types/plist": "^3.0.2",
  39. "husky": "^4.3.0",
  40. "lint-staged": "^10.5.1",
  41. "prettier": "^2.1.2",
  42. "semantic-release": "^17.2.2",
  43. "typescript": "^4.0.5"
  44. },
  45. "dependencies": {
  46. "@electron/asar": "^3.2.1",
  47. "@malept/cross-spawn-promise": "^1.1.0",
  48. "debug": "^4.3.1",
  49. "dir-compare": "^3.0.0",
  50. "fs-extra": "^9.0.1",
  51. "minimatch": "^3.0.4",
  52. "plist": "^3.0.4"
  53. },
  54. "husky": {
  55. "hooks": {
  56. "pre-commit": "lint-staged"
  57. }
  58. },
  59. "lint-staged": {
  60. "*.ts": [
  61. "prettier --write"
  62. ]
  63. }
  64. }