mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-10-31 23:09:49 +00:00
93 lines
3.0 KiB
JSON
93 lines
3.0 KiB
JSON
{
|
|
"name": "8bitworkshop",
|
|
"version": "3.8.1",
|
|
"author": "Steven Hugg",
|
|
"category": "Development",
|
|
"description": "Desktop version of 8bitworkshop.com retro programming IDE",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sehugg/8bitworkshop.git"
|
|
},
|
|
"license": "GPL-3.0",
|
|
"dependencies": {
|
|
"@sentry/electron": "^2.5.1",
|
|
"binaryen": "^101.0.0",
|
|
"chokidar": "^3.5.0",
|
|
"jquery": "^3.5.1",
|
|
"reflect-metadata": "^0.1.13",
|
|
"update-electron-app": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bootbox": "^5.1.3",
|
|
"@types/bootstrap": "^3.4.0",
|
|
"@types/file-saver": "^2.0.1",
|
|
"@types/jquery": "^3.5.5",
|
|
"@types/node": "^14.14.20",
|
|
"atob": "^2.1.x",
|
|
"bootstrap": "^3.4.1",
|
|
"bootstrap-tourist": "^0.2.1",
|
|
"btoa": "^1.2.x",
|
|
"chromedriver": "^90.0.1",
|
|
"clipboard": "^2.0.6",
|
|
"command-exists": "^1.2.9",
|
|
"electron": "^9.4.0",
|
|
"electron-builder": "^22.11.7",
|
|
"electron-packager": "^15.2.0",
|
|
"file-saver": "^2.0.5",
|
|
"heapdump": "^0.3.15",
|
|
"jsdom": "^12.2.0",
|
|
"jsfuzz": "^1.0.14",
|
|
"jszip": "^3.5.0",
|
|
"localforage": "^1.9.0",
|
|
"lzg": "^1.0.x",
|
|
"mocha": "^7.2.0",
|
|
"mocha-simple-html-reporter": "^2.0.0",
|
|
"mousetrap": "^1.6.5",
|
|
"nightwatch": "^1.6.4",
|
|
"octokat": "^0.10.0",
|
|
"pngjs": "^3.4.0",
|
|
"rgbquant": "^1.1.2",
|
|
"split.js": "^1.6.2",
|
|
"typedoc": "^0.21.0",
|
|
"typescript": "^4.3.4",
|
|
"typescript-formatter": "^7.2.2",
|
|
"vgm-parser": "^0.6.3"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build tsconfig.json",
|
|
"test": "npm run test-node",
|
|
"test-one": "NODE_PATH=$(pwd) mocha --recursive --timeout 60000",
|
|
"test-node": "NODE_PATH=$(pwd) mocha --recursive --timeout 60000 test/cli",
|
|
"test-profile": "NODE_PATH=$(pwd) mocha --recursive --timeout 60000 --prof test/cli",
|
|
"test-worker": "NODE_PATH=$(pwd) mocha --timeout 60000 test/cli/testworker.js",
|
|
"test-platforms": "NODE_PATH=$(pwd) mocha --timeout 60000 test/cli/testplatforms.js",
|
|
"test-verilog": "NODE_PATH=$(pwd) mocha --timeout 60000 --reporter mocha-simple-html-reporter --reporter-options output=test/output/verilog.html test/cli/testverilog.js",
|
|
"test-web": "nightwatch -e chrome test/web",
|
|
"start": "electron .",
|
|
"fuzzbasic": "jsfuzz gen/common/basic/fuzz.js ~/basic/corpus/ --versifier false",
|
|
"fuzzhdl": "jsfuzz -r binaryen gen/common/hdl/fuzz.js ~/verilator/corpus/ --versifier false",
|
|
"machine": "node gen/tools/runmachine.js",
|
|
"mkdoc": "typedoc --out web/jsdoc src/common/"
|
|
},
|
|
"main": "electron.js",
|
|
"keywords": [
|
|
"8bit",
|
|
"ide",
|
|
"retrodev",
|
|
"6502",
|
|
"z80"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/sehugg/8bitworkshop/issues"
|
|
},
|
|
"homepage": "https://github.com/sehugg/8bitworkshop#readme",
|
|
"build": {
|
|
"appId": "com.8bitworkshop.ide",
|
|
"icon": "meta/icons/8bitworkshop-icon-1024.png",
|
|
"copyright": "Copyright (c) 2021 Puzzling Plans LLC",
|
|
"linux": {
|
|
"category": "Development"
|
|
}
|
|
}
|
|
}
|