{
  "name": "@lokvis/plugin-sdk",
  "version": "0.10.0",
  "description": "Lokvis Plugin SDK - Build plugins for the Lokvis Runtime",
  "license": "Apache-2.0",
  "author": "Lokvis",
  "homepage": "https://lokvis.dev/architecture/plugin",
  "bugs": {
    "url": "https://github.com/lokvis/lokvis/issues"
  },
  "keywords": [
    "lokvis",
    "plugin",
    "sdk",
    "media-processing",
    "browser",
    "local-first",
    "capability",
    "runtime"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "src",
    "!**/__tests__",
    "!**/*.test.ts",
    "!**/*.test.tsx",
    "!**/*.spec.ts",
    "!**/*.spec.tsx"
  ],
  "dependencies": {
    "@lokvis/schema": "0.10.0"
  },
  "devDependencies": {
    "typescript": "^5.6.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/lokvis/lokvis.git",
    "directory": "packages/plugin-sdk"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "dev": "tsc -p tsconfig.json --watch",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}