{
  "name": "@feng3d/polyfill",
  "version": "0.8.4",
  "description": "",
  "author": "feng",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.umd.cjs",
  "types": "./lib/index.d.ts",
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.umd.cjs"
    }
  },
  "scripts": {
    "clean": "rimraf \"{lib,dist,public}\"",
    "build": "vite build",
    "test": "vitest",
    "test:ui": "vitest --ui",
    "types": "tsc",
    "watch": "tsc -w",
    "lint": "eslint --ext .js --ext .ts src test --ignore-path .gitignore --max-warnings 0",
    "lintfix": "npm run lint -- --fix",
    "docs": "typedoc",
    "release": "npm run clean && npm run lint && npm run build && npm run docs && npm run types && npm publish",
    "prepublishOnly": "node scripts/prepublish.js",
    "postpublish": "node scripts/postpublish.js"
  },
  "repository": {
    "type": "git",
    "url": "https://gitlab.com/feng3d/polyfill.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist/",
    "lib",
    "src",
    "tsconfig.json"
  ],
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "5.17.0",
    "@typescript-eslint/parser": "5.17.0",
    "@vitest/ui": "^0.26.2",
    "cross-env": "7.0.3",
    "eslint": "8.12.0",
    "rimraf": "3.0.2",
    "tslib": "^2.4.0",
    "typedoc": "^0.24.8",
    "typescript": "5.1.3",
    "vite": "^3.0.7",
    "vitest": "^0.26.2"
  }
}