diff options
author | RaindropsSys <raindrops@equestria.dev> | 2023-10-24 17:43:37 +0200 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2023-10-24 17:43:37 +0200 |
commit | ae187b6d75c8079da0be1dc288613bad8466fe61 (patch) | |
tree | 5ea0d34185a2270f29ffaa65e1f5258028d7d5d0 /desktop/node_modules/@electron/universal/package.json | |
download | mist-ae187b6d75c8079da0be1dc288613bad8466fe61.tar.gz mist-ae187b6d75c8079da0be1dc288613bad8466fe61.tar.bz2 mist-ae187b6d75c8079da0be1dc288613bad8466fe61.zip |
Initial commit
Diffstat (limited to 'desktop/node_modules/@electron/universal/package.json')
-rw-r--r-- | desktop/node_modules/@electron/universal/package.json | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/desktop/node_modules/@electron/universal/package.json b/desktop/node_modules/@electron/universal/package.json new file mode 100644 index 0000000..a2a7655 --- /dev/null +++ b/desktop/node_modules/@electron/universal/package.json @@ -0,0 +1,60 @@ +{ + "name": "@electron/universal", + "version": "1.4.2", + "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" + ], + "repository": { + "type": "git", + "url": "https://github.com/electron/universal.git" + }, + "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,entry-asar}/**/*.{js,ts}\"", + "prettier:write": "prettier --write \"{src,entry-asar}/**/*.{js,ts}\"", + "prepublishOnly": "npm run build", + "test": "exit 0", + "prepare": "husky install" + }, + "devDependencies": { + "@continuous-auth/semantic-release-npm": "^3.0.0", + "@types/debug": "^4.1.5", + "@types/fs-extra": "^9.0.4", + "@types/minimatch": "^3.0.5", + "@types/node": "^14.14.7", + "@types/plist": "^3.0.2", + "husky": "^8.0.0", + "lint-staged": "^10.5.1", + "prettier": "^2.1.2", + "typescript": "^4.0.5" + }, + "dependencies": { + "@electron/asar": "^3.2.1", + "@malept/cross-spawn-promise": "^1.1.0", + "debug": "^4.3.1", + "dir-compare": "^3.0.0", + "fs-extra": "^9.0.1", + "minimatch": "^3.0.4", + "plist": "^3.0.4" + }, + "lint-staged": { + "*.ts": [ + "prettier --write" + ] + } +} |