{ "name": "remixdesktop", "version": "1.0.0", "main": "build/main.js", "license": "MIT", "type": "commonjs", "appId": "org.ethereum.remixdesktop", "mac": { "category": "public.app-category.productivity" }, "scripts": { "start:dev": "tsc && cross-env NODE_ENV=development electron .", "start:production": "tsc && cross-env NODE_ENV=production electron .", "pack": "tsc && electron-builder", "dist": "tsc && electron-builder", "postinstall": "electron-builder install-app-deps" }, "devDependencies": { "@electron/rebuild": "^3.2.13", "cross-env": "^7.0.3", "electron": "^25.0.1", "electron-builder": "^23.6.0", "typescript": "^5.1.3" }, "dependencies": { "@remix-project/remix-ws-templates": "^1.0.19", "@remixproject/engine": "0.3.37", "@remixproject/engine-electron": "0.3.37", "@remixproject/plugin": "0.3.37", "@remixproject/plugin-electron": "0.3.37", "chokidar": "^3.5.3", "glob": "9.3.5", "isomorphic-git": "^1.24.2", "node-pty": "^0.10.1" }, "build": { "productName": "Remix IDE", "appId": "org.ethereum.remix-ide", "asar": true, "files": [ "build/**/*" ], "mac": { "category": "public.app-category.productivity", "target": [ { "target": "zip", "arch": [ "x64", "arm64" ] }, { "target": "dmg", "arch": [ "x64", "arm64", "universal" ] } ], "darkModeSupport": true }, "dmg": { "writeUpdateInfo": false }, "nsis": { "createDesktopShortcut": "always", "allowToChangeInstallationDirectory": true, "oneClick": false, "shortcutName": "Remix IDE", "differentialPackage": false }, "win": { "target": [ "zip", "nsis" ] }, "linux": { "target": [ "deb", "snap", "AppImage" ], "category": "WebBrowser" }, "directories": { "output": "release" } } }