{
  "name": "@roeintheglasses/re-script",
  "version": "2.1.1",
  "description": "Advanced LLM-powered JavaScript unminifier and deobfuscator",
  "main": "dist/index.js",
  "bin": {
    "re-script": "dist/cli/index.js"
  },
  "type": "module",
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/cli/index.js",
    "test": "vitest",
    "test:coverage": "vitest --coverage",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "format": "prettier --write src/**/*.ts",
    "type-check": "tsc --noEmit",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "keywords": [
    "javascript",
    "unminify",
    "deobfuscate",
    "ai",
    "llm",
    "typescript",
    "cli"
  ],
  "author": "roeintheglasses",
  "license": "MIT",
  "dependencies": {
    "@anthropic-ai/sdk": "^0.24.3",
    "@babel/core": "^7.25.2",
    "@babel/types": "^7.25.2",
    "@langchain/anthropic": "^0.2.18",
    "@langchain/openai": "^0.2.8",
    "chalk": "^5.3.0",
    "commander": "^12.1.0",
    "cosmiconfig": "^9.0.0",
    "glob": "^10.4.5",
    "langchain": "^0.2.16",
    "openai": "^4.56.0",
    "ora": "^8.0.1",
    "prettier": "^3.3.3",
    "webcrack": "^2.14.1",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/babel__core": "^7.20.5",
    "@types/node": "^20.14.15",
    "@typescript-eslint/eslint-plugin": "^8.38.0",
    "@typescript-eslint/parser": "^8.38.0",
    "@vitest/coverage-v8": "^2.0.5",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "typescript": "^5.5.4",
    "vitest": "^2.0.5"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ]
}
