{
  "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.0",
    "@types/ini": "4.1.1",
    "@types/path-browserify": "1.0.3"
  },
  "devDependencies": {
    "@arianrhodsandlot/eslint-config": "0.18.4",
    "@arianrhodsandlot/release-kit": "0.1.7",
    "@astrojs/starlight": "0.32.2",
    "@happy-dom/global-registrator": "17.2.2",
    "@playwright/test": "1.50.1",
    "@types/is-ci": "3.0.4",
    "@types/node": "22.13.9",
    "@types/wicg-file-system-access": "2023.10.5",
    "astro": "5.4.2",
    "eslint": "9.21.0",
    "ini": "5.0.0",
    "lint-staged": "15.4.3",
    "path-browserify": "1.0.1",
    "simple-git-hooks": "2.11.1",
    "typescript": "5.8.2",
    "vite": "6.2.0"
  },
  "version": "0.14.1",
  "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"
  }
}