{
  "name": "lt-script",
  "version": "1.0.7",
  "type": "module",
  "description": "LT Language Compiler for FiveM",
  "main": "dist/index.js",
  "bin": {
    "ltc": "./dist/cli/ltc.js"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "fivem",
    "lua",
    "compiler",
    "laotscripts",
    "laot",
    "lt"
  ],
  "author": "laot",
  "repository": {
    "type": "git",
    "url": "https://github.com/laot7490/lt-script.git"
  },
  "license": "MIT",
  "scripts": {
    "generate:natives": "tsx tools/generate_native_names.ts",
    "prebuild": "npm run generate:natives",
    "build": "npm run prebuild && tsc",
    "dev": "tsc --watch",
    "test": "node dist/tests/run.js",
    "build:lt": "npm run build",
    "build:vscode": "cd vscode-extension && npx vsce package",
    "watch:playground": "tsx src/cli/ltc.ts watch playground",
    "watch:testing": "tsx src/cli/ltc.ts watch .testing",
    "github:push": "node tools/push.js"
  },
  "devDependencies": {
    "@types/node": "^25.0.10",
    "tsx": "^4.21.0",
    "typescript": "^5.3.0"
  }
}
