{
  "name": "@unovue/detypes",
  "version": "0.8.5",
  "description": "Removes TypeScript type annotations but keeps the formatting",
  "author": "Zernonia <zernonia@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/unovue/detypes#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/unovue/detypes.git"
  },
  "bugs": {
    "url": "https://github.com/unovue/detypes/issues"
  },
  "keywords": [
    "typescript",
    "formatting",
    "vue",
    "sfc"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "main": "dist/index.js",
  "bin": "detype.js",
  "files": [
    "dist/**/*",
    "index.d.ts"
  ],
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@babel/core": "^7.24.5",
    "@babel/preset-typescript": "^7.24.1",
    "@vue/compiler-dom": "^3.4.27",
    "@vue/compiler-sfc": "^3.4.27",
    "@vuedx/template-ast-types": "0.7.1",
    "fast-glob": "^3.3.2",
    "prettier": "^3.2.5",
    "typescript": "^5.4.5"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^2.17.0",
    "@babel/traverse": "^7.24.5",
    "@types/babel__core": "^7.20.5",
    "@types/babel__traverse": "^7.20.5",
    "@types/node": "18.15.11",
    "bumpp": "^9.4.1",
    "eslint": "^9.2.0",
    "npm-run-all": "^4.1.5",
    "rimraf": "^5.0.7",
    "tsup": "^8.0.2",
    "vitest": "^1.6.0"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "release": "bumpp package.json"
  }
}