mirror of
https://github.com/damp11113-software/ccIDE.git
synced 2025-04-27 22:48:13 +00:00
28 lines
875 B
JSON
28 lines
875 B
JSON
{
|
|
"name": "ccide",
|
|
"version": "1.1",
|
|
"description": "ComputerCraft mod virtual lua IDE",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "electron .",
|
|
"build": "electron-packager . ccIDE --platform=win32 --arch=x64 --icon=assets/ccIDEIcon.ico --out=dist --overwrite",
|
|
"full_build": "webpack --mode production && electron-packager . ccIDE --platform=win32 --arch=x64 --icon=assets/ccIDEIcon.ico --out=dist --overwrite"
|
|
},
|
|
"author": "DPSoftware Foundation",
|
|
"license": "GPL-3.0-or-later",
|
|
"devDependencies": {
|
|
"electron": "^31.1.0",
|
|
"webpack": "^5.93.0",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-node-externals": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@blockly/plugin-workspace-search": "^9.0.5",
|
|
"@electron/remote": "^2.1.2",
|
|
"blockly": "^11.1.1",
|
|
"bootstrap": "^5.3.3",
|
|
"electron-prompt": "^1.7.0",
|
|
"xmldom": "^0.6.0"
|
|
}
|
|
}
|