You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@electron/universal",
  3. "version": "2.0.1",
  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": ">=16.4"
  19. },
  20. "files": [
  21. "dist/*",
  22. "entry-asar/*",
  23. "!entry-asar/**/*.ts",
  24. "README.md"
  25. ],
  26. "author": "Samuel Attard",
  27. "scripts": {
  28. "build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && tsc -p tsconfig.entry-asar.json",
  29. "lint": "prettier --check \"{src,entry-asar,test}/**/*.ts\" \"*.ts\"",
  30. "prettier:write": "prettier --write \"{src,entry-asar,test}/**/*.ts\" \"*.ts\"",
  31. "prepublishOnly": "npm run build",
  32. "test": "jest",
  33. "prepare": "husky install"
  34. },
  35. "devDependencies": {
  36. "@continuous-auth/semantic-release-npm": "^4.0.0",
  37. "@electron/get": "^3.0.0",
  38. "@types/cross-zip": "^4.0.1",
  39. "@types/debug": "^4.1.10",
  40. "@types/fs-extra": "^11.0.3",
  41. "@types/jest": "^29.5.7",
  42. "@types/minimatch": "^5.1.2",
  43. "@types/node": "^20.8.10",
  44. "@types/plist": "^3.0.4",
  45. "cross-zip": "^4.0.0",
  46. "husky": "^8.0.3",
  47. "jest": "^29.7.0",
  48. "lint-staged": "^15.0.2",
  49. "prettier": "^3.0.3",
  50. "ts-jest": "^29.1.1",
  51. "typescript": "^5.2.2"
  52. },
  53. "dependencies": {
  54. "@electron/asar": "^3.2.7",
  55. "@malept/cross-spawn-promise": "^2.0.0",
  56. "debug": "^4.3.1",
  57. "dir-compare": "^4.2.0",
  58. "fs-extra": "^11.1.1",
  59. "minimatch": "^9.0.3",
  60. "plist": "^3.1.0"
  61. },
  62. "lint-staged": {
  63. "*.ts": [
  64. "prettier --write"
  65. ]
  66. },
  67. "resolutions": {
  68. "jackspeak": "2.1.1"
  69. }
  70. }