{
  "name": "gst-kit",
  "version": "0.2.7",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/esm/index.mjs",
      "require": "./dist/cjs/index.cjs"
    }
  },
  "types": "./dist/index.d.ts",
  "scripts": {
    "clean": "node scripts/clean.mjs",
    "build:native": "node-gyp rebuild",
    "build:ts": "rolldown -c rolldown.config.mjs",
    "build": "npm run clean && npm run build:native && npm run build:ts",
    "test:unit": "vitest --no-watch",
    "test:unit:bun": "bun x vitest --no-watch",
    "test:unit:deno": "deno run -A --node-modules-dir=auto npm:vitest --no-watch",
    "test": "npm run test:unit",
    "prepublishOnly": "npm run build:ts",
    "postinstall": "node scripts/ensure-native-addon.mjs",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "format": "prettier --write \"**/*.{ts,js,json,md}\""
  },
  "keywords": [
    "gstreamer",
    "multimedia",
    "streaming",
    "video",
    "audio",
    "pipeline",
    "native",
    "addon",
    "typescript"
  ],
  "author": {
    "name": "Serhii Mamedov",
    "email": "bboyvivus@gmail.com"
  },
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "git@github.com:repugraf/gst-kit.git"
  },
  "homepage": "https://github.com/repugraf/gst-kit",
  "description": "Node.js binding for GStreamer, providing high-level APIs for multimedia streaming and processing",
  "dependencies": {
    "node-addon-api": "8.7.0",
    "node-gyp": "12.3.0"
  },
  "devDependencies": {
    "@types/node": "25.9.1",
    "oxlint": "1.66.0",
    "prettier": "3.8.3",
    "rolldown": "1.0.2",
    "rolldown-plugin-dts": "0.25.1",
    "typescript": "6.0.3",
    "vitest": "4.1.7"
  },
  "publishConfig": {
    "access": "public"
  },
  "overrides": {
    "vitest": {
      "vite": "8.0.13"
    }
  }
}
