{ "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", "postinstall": "electron-builder install-app-deps" }, "devDependencies": { "@electron/rebuild": "^3.2.13", "@types/byline": "^4.2.35", "cross-env": "^7.0.3", "electron": "^25.0.1", "electron-builder": "^23.6.0", "typescript": "^5.1.3" }, "dependencies": { "@remixproject/engine": "0.3.37", "@remixproject/engine-electron": "0.3.37", "@remixproject/plugin": "0.3.37", "@remixproject/plugin-electron": "0.3.37", "@vscode/ripgrep": "^1.15.6", "add": "^2.0.6", "byline": "^5.0.0", "chokidar": "^3.5.3", "isomorphic-git": "^1.24.2", "node-pty": "^0.10.1", "yarn": "^1.22.19" }, "optionalDependencies": { "@remix-project/remix-ws-templates": "^1.0.27" }, "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" } } }