{
  "name": "arrowtab",
  "version": "0.0.5",
  "description": "Use arrow keys to \"tab\" between focusable elements",
  "keywords": [
    "arrowkeys",
    "tab",
    "focus",
    "navigation"
  ],
  "main": "dist/index.js",
  "author": "Sean Nicholas",
  "license": "MIT",
  "type": "module",
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.15.4",
    "@changesets/cli": "^2.27.7",
    "concurrently": "^8.2.2",
    "http-server": "^14.1.1",
    "prettier": "^3.3.3",
    "prettier-ignore": "^0.1.3",
    "typescript": "^5.5.4",
    "vitest": "^2.0.5"
  },
  "homepage": "https://github.com/sean-nicholas/arrowtab",
  "bugs": {
    "url": "https://github.com/sean-nicholas/arrowtab/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sean-nicholas/arrowtab.git"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "vitest run",
    "dev": "concurrently \"tsc --watch\" \"http-server -o --cors\"",
    "build": "pnpm clean && tsc",
    "prepublish": "pnpm clean && pnpm build",
    "clean": "rm -rf dist",
    "ci": "pnpm run build && pnpm run check-format && pnpm run check-exports && pnpm run test",
    "format": "prettier --ignore-path ./node_modules/prettier-ignore/prettierignore --write .",
    "check-format": "prettier --ignore-path ./node_modules/prettier-ignore/prettierignore --check .",
    "check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
    "local-release": "changeset version && changeset publish",
    "new-changeset": "changeset"
  }
}