{
  "name": "dash-parser",
  "version": "0.0.1",
  "description": "A simple library to read/write DASH manifests",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "lint": "xo",
    "type-check": "tsc --noEmit",
    "audit": "npm audit --audit-level high",
    "build": "rm -fR ./dist; tsc",
    "test": "npm run lint && npm run build && npm run audit && jest --coverage",
    "test-local": "jest",
    "test-offline": "npm run lint && npm run build && jest --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kuu/dash-parser.git"
  },
  "keywords": [
    "MPEG",
    "DASH",
    "media",
    "video",
    "audio",
    "streaming"
  ],
  "author": "Kuu Miyazaki",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kuu/dash-parser/issues"
  },
  "homepage": "https://github.com/kuu/dash-parser#readme",
  "dependencies": {
    "@js-temporal/polyfill": "^0.5.1",
    "fast-xml-parser": "^5.8.0"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "^25.7.0",
    "jest": "^30.4.2",
    "ts-jest": "^29.4.9",
    "ts-node": "^10.9.2",
    "typescript": "^6.0.3",
    "xo": "^0.60.0"
  }
}
