zx-generation
Version:
A high-fidelity ZX Spectrum emulator in JavaScript — fully generated by a large language model (LLM) to explore the boundaries of AI in systems programming.
73 lines (72 loc) • 1.95 kB
JSON
{
"name": "zx-generation",
"version": "1.0.1",
"description": "A high-fidelity ZX Spectrum emulator in JavaScript — fully generated by a large language model (LLM) to explore the boundaries of AI in systems programming.",
"main": "dist/zxgeneration.umd.min.js",
"module": "dist/zxgeneration.esm.js",
"type": "module",
"scripts": {
"start": "npx serve . -p 8080",
"serve": "npx serve . -p 8080",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"format": "prettier --write src/**/*.js examples/*.html",
"format:check": "prettier --check src/**/*.js examples/*.html",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"clean": "rm -rf dist coverage",
"prepare": "npm run build"
},
"keywords": [
"zx-spectrum",
"emulator",
"z80",
"retro",
"gaming",
"8-bit",
"javascript",
"web",
"llm",
"ai-generated",
"systems-programming"
],
"author": "Álvaro Mateos (https://github.com/alvaromah)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alvaromah/zx-generation.git"
},
"bugs": {
"url": "https://github.com/alvaromah/zx-generation/issues"
},
"homepage": "https://github.com/alvaromah/zx-generation#readme",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"rollup": "^4.0.0",
"serve": "^14.2.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"src",
"rom",
"examples",
"dist",
"README.md",
"LICENSE",
"API.md"
]
}