{
  "name": "@wethegit/preact-stickerbook",
  "version": "5.1.0",
  "description": "Easily create collage apps that are accessible by default.",
  "files": [
    "dist/*"
  ],
  "style": "dist/style.css",
  "css": "dist/style.css",
  "type": "module",
  "engines": {
    "node": ">=v20.10.0"
  },
  "types": "./dist/main.d.ts",
  "exports": {
    ".": "./dist/preact-stickerbook.js",
    "./style.css": "./dist/style.css"
  },
  "scripts": {
    "prepare": "husky install",
    "start": "vite",
    "build": "rm -rf dist && vite build",
    "lint:scripts": "eslint --fix --ext .jsx,.js,.ts,.tsx --ignore-path .gitignore .",
    "lint:styles": "stylelint src/**/*.{css,scss}",
    "lint": "npm run lint:scripts && npm run lint:styles",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write ."
  },
  "dependencies": {
    "preact": "^10.13.1",
    "wtc-math": "^1.0.20",
    "wtc-simplegl": "^1.0.3"
  },
  "peerDependencies": {
    "preact": "^10.13.1"
  },
  "devDependencies": {
    "@preact/preset-vite": "^2.5.0",
    "@types/node": "~20.17.1",
    "@typescript-eslint/eslint-plugin": "~7.18.0",
    "@typescript-eslint/parser": "~7.18.0",
    "eslint": "~8.57.0",
    "eslint-config-preact": "~1.5.0",
    "eslint-config-prettier": "~9.1.0",
    "eslint-import-resolver-typescript": "~3.6.1",
    "eslint-plugin-import": "~2.31.0",
    "eslint-plugin-jest": "~28.8.0",
    "husky": "^9.0.11",
    "lint-staged": "^15.2.2",
    "postcss": "^8.4.23",
    "postcss-scss": "^4.0.6",
    "prettier": "~3.3.0",
    "sass": "^1.62.1",
    "stylelint": "^16.6.0",
    "stylelint-config-recommended": "^14.0.0",
    "stylelint-config-standard": "^36.0.0",
    "stylelint-selector-bem-pattern": "^4.0.0",
    "typescript": "~5.6.2",
    "vite": "^5.2.11",
    "vite-plugin-dts": "~3.9.1"
  },
  "keywords": [
    "preact",
    "preact-component"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wethegit/preact-stickerbook.git"
  },
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/wethegit/preact-stickerbook/issues"
  },
  "homepage": "https://github.com/wethegit/preact-stickerbook#readme",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*": "prettier -w -u",
    "*.{js,jsx,ts,tsx}": "eslint --fix",
    "*.{css,scss}": "stylelint --fix"
  }
}