{
    "name": "@toolfactory.dev/core",
    "description": "Shared codegen library for api2ai and db2ai",
    "version": "1.0.0-rc.6",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/annettedorothea/core2ai.git"
    },
    "publishConfig": {
        "access": "public"
    },
    "type": "module",
    "files": [
        "out",
        "scripts/npm-prepare.mjs",
        "scripts/npm-postinstall.mjs",
        "README.md",
        "LICENSE"
    ],
    "exports": {
        "./codegen": {
            "types": "./out/codegen/index.d.ts",
            "default": "./out/codegen/index.js"
        }
    },
    "scripts": {
        "version": "node scripts/bump-version.mjs",
        "build": "tsc -p tsconfig.json",
        "watch": "tsc -p tsconfig.json --watch",
        "postinstall": "node scripts/npm-postinstall.mjs",
        "prepare": "node scripts/npm-prepare.mjs",
        "prepublishOnly": "npm run build",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "typecheck": "tsc -p tsconfig.json --noEmit",
        "lint": "eslint .",
        "lint:fix": "eslint . --fix",
        "check": "npm run format:check && npm run typecheck && npm run lint",
        "test": "vitest run"
    },
    "peerDependencies": {
        "@modelcontextprotocol/sdk": "^1.29.0"
    },
    "dependencies": {
        "chalk": "~5.6.2",
        "langium": "~4.2.0",
        "zod": "^4.4.3"
    },
    "devDependencies": {
        "@modelcontextprotocol/sdk": "^1.29.0",
        "@eslint/js": "^10.0.1",
        "@types/node": "~22.19.20",
        "eslint": "^10.4.1",
        "husky": "^9.1.7",
        "prettier": "^3.8.3",
        "typescript": "~6.0.3",
        "typescript-eslint": "^8.60.1",
        "vitest": "~4.1.8"
    }
}
