{
  "name": "@freelang/core",
  "version": "2.1.0",
  "description": "FreeLang v2.1.0: AI-First Programming Language - Self-Correcting + Intent-Driven + Production Ready",
  "main": "dist/cli/index.js",
  "types": "dist/cli/index.d.ts",
  "scripts": {
    "build": "tsc",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint src --ext .ts",
    "start": "node dist/cli/index.js",
    "dev": "ts-node src/cli/index.ts",
    "clean": "rm -rf dist",
    "prepare": "npm run build"
  },
  "keywords": [
    "ai",
    "programming-language",
    "code-generation",
    "c-backend",
    "minimal-intent",
    "freelang"
  ],
  "author": "Claude AI",
  "license": "MIT",
  "bin": {
    "freelang": "./bin/freelang"
  },
  "dependencies": {
    "chalk": "^4.1.2",
    "express": "^5.2.1"
  },
  "devDependencies": {
    "@types/jest": "^29.5.8",
    "@types/node": "^20.10.0",
    "@typescript-eslint/eslint-plugin": "^6.13.0",
    "@typescript-eslint/parser": "^6.13.0",
    "eslint": "^8.55.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://gogs.dclub.kr/kim/v2-freelang-ai.git"
  },
  "bugs": {
    "url": "https://gogs.dclub.kr/kim/v2-freelang-ai/issues"
  },
  "homepage": "https://gogs.dclub.kr/kim/v2-freelang-ai",
  "files": [
    "dist",
    "bin",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "KNOWN_ISSUES.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "kpm": {
    "category": "language-runtime",
    "subcategory": "ai-compiler",
    "tags": [
      "ai",
      "code-generation",
      "c-backend",
      "freelang",
      "intent-parser",
      "self-correcting"
    ],
    "entry": "dist/cli/index.js",
    "cli": true,
    "version": "2.1.0",
    "dependencies": [],
    "exports": {
      "cli": "./dist/cli/index.js",
      "engine": "./dist/engine/auto-header.js",
      "parser": "./dist/parser/parser.js",
      "dashboard": "./dist/dashboard/dashboard.js"
    }
  }
}
