{
  "name": "svga-web-forked",
  "version": "2.4.1",
  "packageManager": "pnpm@9.3.0",
  "description": "A SVGA player for modern Web (forked from svga-web)",
  "homepage": "https://github.com/rickychan0611/svga-web",
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "bugs": {
    "url": "https://github.com/rickychan0611/svga-web/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rickychan0611/svga-web.git"
  },
  "keywords": [
    "svga",
    "svga web player",
    "Typescript",
    "svga.lite"
  ],
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/svga-web-forked.umd.cjs",
  "module": "./dist/svga-web-forked.js",
  "exports": {
    ".": {
      "import": "./dist/svga-web-forked.js",
      "require": "./dist/svga-web-forked.umd.cjs"
    }
  },
  "types": "./dist/index.d.ts",
  "scripts": {
    "prestart": "prettier --check ./src && tsc -p ./",
    "start": "eslint ./src && vite",
    "prebuild": "prettier --check ./src && tsc -p ./",
    "build": "vite build",
    "prepublish": "pnpm build",
    "proto": "node scripts/generate-proto.mjs"
  },
  "author": "rickychan0611 (forked from naeemo<naeemo@qq.com>)",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^20.14.2",
    "@types/offscreencanvas": "^2019.6.4",
    "@types/pako": "^2.0.0",
    "@typescript-eslint/eslint-plugin": "^7.13.0",
    "@typescript-eslint/parser": "^7.13.0",
    "eslint": "^9.5.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.1.3",
    "husky": "^9.0.11",
    "lint-staged": "^15.2.7",
    "pako": "^2.0.4",
    "prettier": "^3.3.2",
    "protobufjs": "^7.3.2",
    "protobufjs-cli": "^1.0.0",
    "typescript": "^5.4.5",
    "vite": "^5.3.1"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.+(ts|js|json|md|html)": [
      "eslint --fix",
      "prettier --write"
    ]
  }
}