{
  "name": "ktx-parse",
  "version": "0.7.0",
  "description": "KTX 2.0 (.ktx2) parser and serializer.",
  "type": "module",
  "sideEffects": false,
  "source": "./src/index.ts",
  "types": "./dist/index.d.ts",
  "main": "./dist/ktx-parse.cjs",
  "module": "./dist/ktx-parse.esm.js",
  "exports": {
    "types": "./dist/index.d.ts",
    "require": "./dist/ktx-parse.cjs",
    "default": "./dist/ktx-parse.modern.js"
  },
  "repository": "github:donmccurdy/ktx-parse",
  "author": "Don McCurdy <dm@donmccurdy.com>",
  "license": "MIT",
  "scripts": {
    "dist": "microbundle --format cjs,esm,modern --no-compress --define PACKAGE_VERSION=$npm_package_version",
    "watch": "microbundle watch --format cjs,esm,modern --no-compress --define PACKAGE_VERSION=$npm_package_version",
    "test": "ava --no-worker-threads test/test.ts",
    "validate": "ava --no-worker-threads test/validate.ts",
    "coverage": "c8 --reporter=lcov --reporter=text ava --no-worker-threads test/test.ts --tap",
    "coverage:report": "c8 report --reporter=text-lcov > coverage/coverage.lcov",
    "docs": "typedoc src/index.ts --plugin typedoc-plugin-markdown --out ./docs",
    "preversion": "yarn dist && yarn test && yarn validate",
    "version": "rimraf dist/* && yarn dist && yarn docs && git add -u",
    "postversion": "git push && git push --tags && npm publish && yarn coverage:report"
  },
  "devDependencies": {
    "@expo/spawn-async": "^1.7.2",
    "@types/tmp": "^0.2.6",
    "@typescript-eslint/eslint-plugin": "7.1.1",
    "ava": "6.1.2",
    "c8": "9.1.0",
    "eslint": "8.57.0",
    "eslint-config-prettier": "9.1.0",
    "glob": "10.3.10",
    "microbundle": "0.15.1",
    "prettier": "3.2.5",
    "rimraf": "5.0.5",
    "source-map-support": "0.5.21",
    "tmp": "^0.2.3",
    "tsx": "^4.7.0",
    "typedoc": "0.25.12",
    "typedoc-plugin-markdown": "3.17.1",
    "typescript": "5.4.2"
  },
  "files": [
    "dist/",
    "src/",
    "README.md",
    "LICENSE",
    "package.json"
  ],
  "browserslist": [
    "defaults",
    "not IE 11",
    "node >= 14"
  ],
  "ava": {
    "extensions": {
      "ts": "module"
    },
    "nodeArguments": [
      "--import=tsx"
    ]
  },
  "dependencies": {}
}
