Initial Commit

This commit is contained in:
Samuel Attard
2020-10-20 17:21:38 -07:00
commit 163f495b6b
9 changed files with 5363 additions and 0 deletions

42
package.json Normal file
View File

@@ -0,0 +1,42 @@
{
"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/*",
"README.md"
],
"author": "Samuel Attard",
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"lint": "prettier --check \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@continuous-auth/semantic-release-npm": "^2.0.0",
"@types/fs-extra": "^9.0.2",
"@types/node": "^14.11.10",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"semantic-release": "^17.2.1",
"typescript": "^4.0.3"
},
"dependencies": {
"@malept/cross-spawn-promise": "^1.1.0",
"asar": "^3.0.3",
"fs-extra": "^9.0.1",
"macho": "^1.4.0"
}
}