{
  "name": "react-tetris",
  "version": "0.4.0",
  "description": "Embed a game of Tetris in your React app",
  "main": "lib/components/Tetris.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/brandly/react-tetris"
  },
  "dependencies": {
    "keymaster": "1.6.2"
  },
  "scripts": {
    "build:lib": "tsc",
    "build:app": "esbuild app/main.tsx --bundle --outfile=dist/main.js",
    "watch": "npm run build:app -- --watch",
    "build": "npm run clean && npm run build:lib && npm run build:app && npm run html",
    "html": "cp app/index.html dist/",
    "lint": "eslint . --ext .ts,.tsx",
    "clean": "rm -rf dist/* lib/*",
    "test": "tsc --noEmit && npm run lint && npm run test:unit",
    "test:unit": "esbuild --bundle --platform=node test/index.ts | node"
  },
  "author": "Matthew Brandly",
  "license": "MIT",
  "devDependencies": {
    "@types/assert": "1.5.10",
    "@types/events": "3.0.0",
    "@types/react": "18.2.42",
    "@types/react-dom": "18.2.17",
    "@types/styled-components": "5.1.15",
    "@typescript-eslint/eslint-plugin": "6.13.2",
    "@typescript-eslint/parser": "6.13.2",
    "esbuild": "0.19.8",
    "eslint": "8.55.0",
    "eslint-plugin-jsx-a11y": "6.6.0",
    "gh-pages": "3.2.3",
    "prettier": "3.1.0",
    "react": "18.2.0",
    "react-dom": "18.2.0",
    "styled-components": "5.3.1",
    "typescript": "5.3.3",
    "uglify-js": "3.17.4"
  },
  "peerDependencies": {
    "react": "^16.8.0 || ^18.0.0",
    "react-dom": "^16.8.0 || ^18.0.0"
  },
  "homepage": "https://brandly.github.io/react-tetris/",
  "files": [
    "lib/"
  ]
}
