{
  "name": "@opensip-tools/core",
  "version": "2.13.0",
  "license": "MIT",
  "description": "Core kernel for OpenSIP Tools — language adapters, plugin loader, errors, logger, IDs, retry, project config",
  "keywords": [
    "opensip-tools",
    "static-analysis",
    "code-quality",
    "kernel",
    "plugin-system"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/opensip-ai/opensip-tools.git",
    "directory": "packages/core"
  },
  "homepage": "https://github.com/opensip-ai/opensip-tools",
  "bugs": {
    "url": "https://github.com/opensip-ai/opensip-tools/issues"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js",
    "./errors": "./dist/lib/errors.js",
    "./logger": "./dist/lib/logger.js",
    "./types": "./dist/types/index.js",
    "./signal": "./dist/types/signal.js",
    "./plugins": "./dist/plugins/index.js",
    "./languages": "./dist/languages/index.js",
    "./languages/parse-cache.js": "./dist/languages/parse-cache.js",
    "./test-utils/with-scope.js": "./dist/test-utils/with-scope.js"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@opentelemetry/api": "^1.9.1",
    "js-yaml": "^4.1.0",
    "ulid": "^3.0.2"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.0",
    "@types/node": "^22.19.19",
    "typescript": "~6.0.3",
    "vitest": "^4.1.7"
  },
  "scripts": {
    "build": "tsc",
    "test": "vitest run",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}