* fix: no asar support (#4), renamed directories (#5) and check if we need to duplicate asar's (#1) * Add missing newline
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@electron/universal",
|
|
"version": "0.0.0-development",
|
|
"description": "Utility for creating Universal macOS applications from two x64 and arm64 Electron applications",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"electron",
|
|
"apple silicon",
|
|
"universal"
|
|
],
|
|
"engines": {
|
|
"node": ">=8.6"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"entry-asar/*",
|
|
"README.md"
|
|
],
|
|
"author": "Samuel Attard",
|
|
"scripts": {
|
|
"build": "tsc && tsc -p tsconfig.esm.json",
|
|
"lint": "prettier --check \"src/**/*.ts\"",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "exit 0"
|
|
},
|
|
"devDependencies": {
|
|
"@continuous-auth/semantic-release-npm": "^2.0.0",
|
|
"@types/fs-extra": "^9.0.4",
|
|
"@types/node": "^14.14.7",
|
|
"husky": "^4.3.0",
|
|
"lint-staged": "^10.5.1",
|
|
"prettier": "^2.1.2",
|
|
"semantic-release": "^17.2.2",
|
|
"typescript": "^4.0.5"
|
|
},
|
|
"dependencies": {
|
|
"@malept/cross-spawn-promise": "^1.1.0",
|
|
"asar": "^3.0.3",
|
|
"dir-compare": "^2.4.0",
|
|
"fs-extra": "^9.0.1"
|
|
}
|
|
}
|