{ "name": "remixdesktop", "version": "1.0.0", "main": "build/main.js", "license": "MIT", "type": "commonjs", "description": "Remix IDE Desktop", "repository": { "type": "git", "url": "git+https://github.com/ethereum/remix-project.git" }, "author": { "name": "Remix Team", "email": "remix@ethereum.org" }, "bugs": { "url": "https://github.com/ethereum/remix-project/issues" }, "homepage": "https://github.com/ethereum/remix-project#readme", "appId": "org.ethereum.remixdesktop", "mac": { "category": "public.app-category.productivity" }, "scripts": { "start:dev": "tsc && cross-env NODE_ENV=development electron --inspect=5858 .", "start:production": "tsc && cross-env NODE_ENV=production electron .", "dist": "tsc && electron-builder" }, "devDependencies": { }, "dependencies": { "node-pty": "^0.10.1" }, "build": { "productName": "Remix IDE", "appId": "org.ethereum.remix-ide", "asar": true, "icon": "assets/icon.png", "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": [ "nsis" ] }, "linux": { "target": [ "deb", "snap", "AppImage" ], "category": "WebBrowser" }, "directories": { "output": "release" } } }