UNPKG

nostalgist

Version:

Nostalgist.js is a JavaScript library that allows you to run emulators of retro consoles within web browsers.

80 lines 2.38 kB
{ "name": "nostalgist", "description": "Nostalgist.js is a JavaScript library that allows you to run emulators of retro consoles within web browsers.", "keywords": [ "retroarch", "emulator", "emscripten" ], "bugs": { "url": "https://github.com/arianrhodsandlot/nostalgist/issues" }, "repository": { "type": "git", "url": "git+https://github.com/arianrhodsandlot/nostalgist.git" }, "license": "MIT", "author": { "name": "arianrhodsandlot", "email": "theguidanceofawhitetower@gmail.com" }, "type": "module", "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/nostalgist.js", "require": "./dist/nostalgist.umd.js" } }, "main": "./dist/nostalgist.umd.js", "jsdelivr": "./dist/nostalgist.umd.js", "module": "./dist/nostalgist.js", "browser": "./dist/nostalgist.umd.js", "types": "./dist/types/index.d.ts", "files": [ "dist" ], "simple-git-hooks": { "pre-commit": "pnpm lint-staged && node --run=build" }, "lint-staged": { "*.?(m|c)@(j|t)s?(x)": "node --run=eslint -- --fix", "package.json": "pnpm dlx sort-package-json" }, "dependencies": { "@types/emscripten": "1.40.1", "@types/ini": "4.1.1", "@types/path-browserify": "1.0.3" }, "devDependencies": { "@arianrhodsandlot/eslint-config": "0.19.0", "@arianrhodsandlot/release-kit": "0.1.7", "@astrojs/starlight": "0.35.1", "@happy-dom/global-registrator": "18.0.1", "@playwright/test": "1.54.1", "@types/is-ci": "3.0.4", "@types/node": "24.1.0", "@types/wicg-file-system-access": "2023.10.6", "astro": "5.12.1", "eslint": "9.31.0", "ini": "5.0.0", "lint-staged": "16.1.2", "path-browserify": "1.0.1", "simple-git-hooks": "2.13.0", "typescript": "5.8.3", "vite": "7.0.5" }, "version": "0.16.0", "scripts": { "build": "node scripts/build.ts && tsc", "dev": "vite playground --open", "dev:e2e": "playwright test -c tests/e2e --ui", "docs:build": "astro build --root docs", "docs:dev": "astro dev --root docs", "eslint": "eslint --no-warn-ignored", "lint": "node --run=eslint -- src tests", "test": "node --run=test:integration && node --run=test:e2e", "test:e2e": "playwright test -c tests/e2e", "test:integration": "node --test tests/integration/**/*.spec.ts" } }