8bitworkshop/package.json

104 lines
3.7 KiB
JSON
Raw Normal View History

2016-12-16 01:21:51 +00:00
{
2017-01-12 02:02:23 +00:00
"name": "8bitworkshop",
2023-10-28 04:11:03 +00:00
"version": "3.11.0",
2016-12-16 01:21:51 +00:00
"author": "Steven Hugg",
"category": "Development",
2022-01-25 00:51:52 +00:00
"description": "8bitworkshop.com retro programming IDE",
2019-05-26 03:15:25 +00:00
"repository": {
"type": "git",
2019-08-02 14:30:37 +00:00
"url": "git+https://github.com/sehugg/8bitworkshop.git"
2019-05-26 03:15:25 +00:00
},
2019-08-02 14:30:37 +00:00
"license": "GPL-3.0",
2019-09-05 18:37:47 +00:00
"dependencies": {
"@types/dompurify": "^2.3.4",
"@types/emscripten": "^1.39.5",
2023-08-31 19:27:57 +00:00
"atob": "^2.1.x",
"binaryen": "^101.0.0",
2023-08-31 19:27:57 +00:00
"btoa": "^1.2.x",
"clipboard": "^2.0.6",
"dompurify": "^2.4.0",
"file-saver": "^2.0.5",
2023-02-15 22:24:09 +00:00
"jquery": "^3.6.3",
"jszip": "^3.7.0",
2021-08-01 18:03:50 +00:00
"localforage": "^1.9.0",
"mousetrap": "^1.6.5",
"octokat": "^0.10.0",
2023-11-05 18:16:39 +00:00
"split.js": "^1.6.2"
2019-09-05 18:37:47 +00:00
},
2016-12-16 01:21:51 +00:00
"devDependencies": {
"@types/bootbox": "^5.1.3",
"@types/bootstrap": "^3.4.0",
2022-01-28 16:04:09 +00:00
"@types/expect": "^24.3.0",
"@types/file-saver": "^2.0.3",
2020-12-08 14:45:48 +00:00
"@types/jquery": "^3.5.5",
2022-01-28 16:04:09 +00:00
"@types/mocha": "^9.1.0",
2021-01-06 14:56:10 +00:00
"@types/node": "^14.14.20",
"bootstrap": "^3.4.1",
"bootstrap-tourist": "^0.2.1",
"command-exists": "^1.2.9",
2023-05-18 18:32:31 +00:00
"cors": "^2.8.5",
2023-02-15 22:24:09 +00:00
"esbuild": "^0.12.29",
2023-08-31 19:27:57 +00:00
"express": "^4.18.2",
2023-11-05 18:16:39 +00:00
"fast-png": "^5.0.4",
2023-02-15 22:24:09 +00:00
"jsdom": "^21.1.0",
"lzg": "^1.0.x",
2022-01-25 00:51:52 +00:00
"mocha": "^9.2.0",
"mocha-simple-html-reporter": "^2.0.0",
2023-08-31 19:27:57 +00:00
"typescript": "^5.2.2",
"typescript-formatter": "^7.2.2"
},
"optionalDependencies": {
2022-10-04 15:01:40 +00:00
"chromedriver": "*",
"heapdump": "^0.3.15",
"jsfuzz": "^1.0.14",
2023-08-31 19:27:57 +00:00
"nightwatch": "*"
2017-01-12 02:02:23 +00:00
},
"overrides": {
"fetch-vcr": {
"node-fetch": "2.6.7"
}
},
2017-01-12 02:02:23 +00:00
"scripts": {
2021-08-09 17:06:38 +00:00
"build": "make prepare",
"test": "npm run test-node",
"tsbuild": "tsc --build tsconfig.json",
"esbuild": "npm run esbuild-worker && npm run esbuild-ui && npm run esbuild-server",
2021-08-01 18:03:50 +00:00
"esbuild-clean": "rm -f ./gen/*.*",
2023-05-18 18:32:31 +00:00
"esbuild-server": "esbuild src/worker/server/server.ts --platform=node --bundle --sourcemap --target=es2020 --outfile=./gen/server/server.js",
"esbuild-worker": "esbuild src/worker/workermain.ts --bundle --sourcemap --target=es2017 --outfile=./gen/worker/bundle.js",
"esbuild-ui": "esbuild src/ide/ui.ts src/ide/embedui.ts --splitting --format=esm --bundle --minify --sourcemap --target=es2017 --outdir=./gen/ --external:path --external:fs",
2023-05-18 18:32:31 +00:00
"server": "npm run esbuild-server && rm -fr ./server-root/sessions && node gen/server/server.js",
"test-one": "NODE_PATH=$(pwd) mocha --recursive --timeout 60000",
2022-01-28 16:04:09 +00:00
"test-node": "NODE_PATH=$(pwd) mocha --recursive --timeout 60000 test/cli gen/test",
"test-profile": "NODE_PATH=$(pwd) mocha --recursive --timeout 60000 --prof test/cli gen/test",
"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/verilog/testverilog.js",
"test-web-quick": "nightwatch -e chrome test/web/testembed.js",
"test-web-all": "nightwatch -e chrome test/web",
2020-10-14 22:33:15 +00:00
"fuzzbasic": "jsfuzz gen/common/basic/fuzz.js ~/basic/corpus/ --versifier false",
2021-07-06 18:50:16 +00:00
"fuzzhdl": "jsfuzz -r binaryen gen/common/hdl/fuzz.js ~/verilator/corpus/ --versifier false",
2021-06-21 16:41:54 +00:00
"machine": "node gen/tools/runmachine.js",
"mkdoc": "typedoc --out web/jsdoc src/common/"
2017-01-12 02:02:23 +00:00
},
"keywords": [
"8bit",
"ide",
"retrodev",
"6502",
"z80"
2017-01-12 02:02:23 +00:00
],
"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",
2023-05-18 18:32:31 +00:00
"copyright": "Copyright (c) 2023 Puzzling Plans LLC",
"linux": {
"category": "Development"
}
}
2016-12-16 01:21:51 +00:00
}