{
  "name": "@visioo/shared",
  "version": "0.1.1",
  "description": "Shared code for Visioo IPTV player - parsers, types, and utilities",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./types": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/types/index.js"
    },
    "./parsers": {
      "types": "./dist/parsers/index.d.ts",
      "import": "./dist/parsers/index.js"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "pnpm build",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "type-check": "tsc --noEmit",
    "lint": "biome lint .",
    "format": "biome format --write .",
    "clean": "rm -rf dist"
  },
  "keywords": [
    "iptv",
    "m3u",
    "xtream-codes",
    "parser",
    "visioo"
  ],
  "author": "Visioo Team",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/yasserstudio/visioo.git",
    "directory": "packages/shared"
  },
  "dependencies": {
    "@visioo/api-client": "^0.1.1",
    "pako": "^2.1.0"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "@types/pako": "^2.0.4",
    "typescript": "~5.8.3",
    "vitest": "^4.0.0"
  }
}
