{
  "name": "tinygesture",
  "version": "3.0.1",
  "description": "Very small gesture recognizer for JavaScript. Swipe, pan, tap, doubletap, and longpress.",
  "main": "dist/TinyGesture.js",
  "browser": "dist/TinyGesture.js",
  "type": "module",
  "types": "dist/TinyGesture.d.ts",
  "scripts": {
    "prepare": "husky install && npm run clean && npm run build",
    "clean": "test -d dist && rm -r dist || true",
    "build": "tsc",
    "watch": "tsc --watch",
    "dev": "serve .",
    "lint:format": "npx prettier --write --ignore-unknown .",
    "lint:check": "npx prettier --check --ignore-unknown .",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "repository": {
    "type": "git",
    "url": "https://forge.sciactive.com/sciactive/tinygesture.git"
  },
  "keywords": [
    "gesture",
    "gestures",
    "recognizer",
    "touch",
    "swipe",
    "pan",
    "tap",
    "longpress",
    "pinch",
    "rotate",
    "event"
  ],
  "author": "Hunter Perrin <hperrin@port87.com>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://forge.sciactive.com/sciactive/tinygesture/issues"
  },
  "homepage": "https://sciactive.github.io/tinygesture/",
  "devDependencies": {
    "@tsconfig/recommended": "^1.0.3",
    "husky": "^8.0.3",
    "lint-staged": "^15.1.0",
    "prettier": "^3.0.3",
    "serve": "^14.2.1",
    "typescript": "^5.2.2"
  },
  "lint-staged": {
    "**/*": "prettier --write --ignore-unknown"
  }
}
