{ "name": "apple1js", "version": "0.0.1", "description": "An Apple 1 Emulator in Javascript", "main": "dist/index.js", "scripts": { "build": "webpack --mode=production", "dev": "webpack-dev-server", "lint": "eslint js", "lint-fix": "eslint --fix js", "start": "webpack-dev-server", "test": "jest" }, "repository": { "type": "git", "url": "https://github.com/whscullin/apple1js" }, "keywords": [ "Apple 1", "Emulator", "Javascript" ], "author": "Will Scullin", "license": "MIT", "bugs": { "url": "https://github.com/whscullin/apple1js/issues" }, "homepage": "https://github.com/whscullin/apple1js#readme", "devDependencies": { "@babel/core": "^7.4.0", "@babel/preset-env": "^7.4.2", "@types/micromodal": "^0.3.3", "@typescript-eslint/eslint-plugin": "^6.2.1", "@types/jest": "^29.5.3", "ajv": "^6.9.2", "babel-jest": "^29.5.0", "eslint": "^8.3.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-jest": "^27.2.3", "eslint-plugin-prettier": "^5.0.0", "jest": "^29.5.0", "node-forge": "^1.3.0", "ts-jest": "^29.1.1", "ts-loader": "^9.4.4", "typescript": "^5.1.6", "webpack": "^5.64.4", "webpack-cli": "^4.9.1", "webpack-dev-server": "^4.6.0" }, "dependencies": { "@whscullin/cpu6502": "file:submodules/cpu6502", "micromodal": "^0.4.9" } }