{
  "name": "@cfn/skill-propagation",
  "version": "1.0.0",
  "description": "TypeScript implementation of skill propagation system for CFN Loop",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "propagate-skill-update": "dist/cli.js"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "tsc --project tsconfig.json",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src tests --ext .ts",
    "lint:fix": "eslint src tests --ext .ts --fix",
    "clean": "rm -rf dist coverage",
    "prepublishOnly": "npm run build && npm test"
  },
  "dependencies": {
    "sqlite": "^5.1.1",
    "sqlite3": "^5.1.6"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "@types/sqlite3": "^3.1.8",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.50.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.2"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "cfn",
    "skill",
    "propagation",
    "workflow",
    "codification",
    "typescript"
  ],
  "author": "CFN Team",
  "license": "MIT"
}
