{
  "name": "plugin-common-lib",
  "version": "0.2.0",
  "x-publish-intent": "publishable",
  "description": "Shared comptime utilities for FarmFE plugins — virtual scope, comptime registry, i18n helpers",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./virtual-scope": {
      "import": "./dist/virtual-scope.js",
      "types": "./dist/virtual-scope.d.ts"
    },
    "./comptime-registry": {
      "import": "./dist/comptime-registry.js",
      "types": "./dist/comptime-registry.d.ts"
    },
    "./i18n": {
      "import": "./dist/i18n/index.js",
      "types": "./dist/i18n/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "farmfe",
    "comptime",
    "virtual-scope",
    "plugin-common"
  ],
  "license": "MIT",
  "dependencies": {
    "core-ast-ts": "0.3.0"
  },
  "devDependencies": {
    "typescript": "^5.8.3",
    "vitest": "^3.2.0"
  },
  "scripts": {
    "build": "rm -rf dist && tsc -p tsconfig.json",
    "dev": "tsc -p tsconfig.json --watch",
    "test": "vitest run"
  }
}