Replace deprecated electron-prebuilt with electron@2.0.18

- Updated package.json to use electron@2.0.18 instead of electron-prebuilt@1.4.3
- Modified lib/jibo-cli.js to reference 'electron' instead of 'electron-prebuilt'
- This fixes compatibility issues with the simulator on modern Linux systems
- electron-prebuilt was deprecated and renamed to electron in 2016
This commit is contained in:
pasketti
2026-04-05 22:47:03 -04:00
parent b2569b4ce4
commit bceda87f93
746 changed files with 52817 additions and 65868 deletions

29
node_modules/inherits/package.json generated vendored Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "inherits",
"description": "Browser-friendly inheritance fully compatible with standard node.js inherits()",
"version": "2.0.4",
"keywords": [
"inheritance",
"class",
"klass",
"oop",
"object-oriented",
"inherits",
"browser",
"browserify"
],
"main": "./inherits.js",
"browser": "./inherits_browser.js",
"repository": "git://github.com/isaacs/inherits",
"license": "ISC",
"scripts": {
"test": "tap"
},
"devDependencies": {
"tap": "^14.2.4"
},
"files": [
"inherits.js",
"inherits_browser.js"
]
}