{
  "name": "ts-vitest",
  "version": "1.0.7",
  "description": "A Jest transformer with source map support for TypeScript projects",
  "keywords": [
    "jest",
    "typescript",
    "transform",
    "testing",
    "preset",
    "sourcemap"
  ],
  "homepage": "https://github.com/your-org/ts-vitest#readme",
  "bugs": {
    "url": "https://github.com/your-org/ts-vitest/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/your-org/ts-vitest.git"
  },
  "license": "MIT",
  "author": "",
  "type": "commonjs",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./preset": {
      "types": "./dist/preset.d.ts",
      "default": "./dist/preset.js"
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "ts-vitest": "./dist/cli.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "node scripts/build.js",
    "test": "node scripts/build.js && node ./node_modules/jest/bin/jest.js --passWithNoTests",
    "prepublishOnly": "node -e \"const fs=require('fs');const files=['dist/index.js','dist/preset.js','dist/cli.js'];for (const f of files){if(!fs.existsSync(f)){console.error('Missing '+f+'. Copy the dist/ folder or run: npm install && npm run build');process.exit(1)}}console.log('Ready to publish: dist/ verified')\""
  },
  "peerDependencies": {
    "@jest/transform": ">=29.0.0",
    "jest": ">=29.0.0",
    "typescript": ">=4.7.0"
  },
  "peerDependenciesMeta": {
    "@jest/transform": {
      "optional": true
    }
  },
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@jest/transform": "^29.7.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.10.0",
    "jest": "^29.7.0",
    "typescript": "^5.7.2"
  },
  "engines": {
    "node": ">=18"
  }
}
