summaryrefslogtreecommitdiff
path: root/node_modules/@electron/universal/package.json
diff options
context:
space:
mode:
authorLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 22:54:37 +0300
committerLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 22:54:37 +0300
commit703e03aba33f234712206769f57717ba7d92d23d (patch)
tree0041f04ccb75bd5379c764e9fe42249fffe75fc3 /node_modules/@electron/universal/package.json
parentab6e257e6e9d9a483d7e86f220d8b209a2cd7753 (diff)
downloadFlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.gz
FlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.zst
Added export_allowed file to make repository visible in cgit
Diffstat (limited to 'node_modules/@electron/universal/package.json')
-rw-r--r--node_modules/@electron/universal/package.json64
1 files changed, 64 insertions, 0 deletions
diff --git a/node_modules/@electron/universal/package.json b/node_modules/@electron/universal/package.json
new file mode 100644
index 0000000..11877b9
--- /dev/null
+++ b/node_modules/@electron/universal/package.json
@@ -0,0 +1,64 @@
+{
+ "name": "@electron/universal",
+ "version": "1.3.0",
+ "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/**/*.ts\"",
+ "prepublishOnly": "npm run build",
+ "test": "exit 0"
+ },
+ "devDependencies": {
+ "@continuous-auth/semantic-release-npm": "^2.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": "^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.1.0",
+ "debug": "^4.3.1",
+ "dir-compare": "^2.4.0",
+ "fs-extra": "^9.0.1",
+ "minimatch": "^3.0.4",
+ "plist": "^3.0.4"
+ },
+ "husky": {
+ "hooks": {
+ "pre-commit": "lint-staged"
+ }
+ },
+ "lint-staged": {
+ "*.ts": [
+ "prettier --write"
+ ]
+ }
+}