{
  "name": "tsc-multi",
  "version": "1.1.0",
  "description": "Compile multiple TypeScript projects into multiple targets.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "tsc-multi": "bin/tsc-multi.js"
  },
  "scripts": {
    "build": "tsc -P tsconfig.build.json",
    "watch": "npm run build -- --watch",
    "lint": "eslint . --ext .js,.ts,.jsx,.tsx",
    "clean": "rm -rf dist",
    "test": "npm-run-all test:*",
    "test:integration": "jest --runInBand --config integration/jest.config.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tommy351/tsc-multi.git"
  },
  "keywords": [
    "typescript",
    "tsc",
    "ts",
    "compiler"
  ],
  "files": [
    "bin",
    "dist"
  ],
  "author": "Tommy Chen <tommy351@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/tommy351/tsc-multi/issues"
  },
  "homepage": "https://github.com/tommy351/tsc-multi#readme",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,ts,jsx,tsx}": "eslint --fix"
  },
  "engines": {
    "node": ">=14"
  },
  "dependencies": {
    "debug": "^4.3.4",
    "fast-glob": "^3.2.12",
    "get-stdin": "^8.0.0",
    "p-all": "^3.0.0",
    "picocolors": "^1.0.0",
    "signal-exit": "^3.0.7",
    "string-to-stream": "^3.0.1",
    "superstruct": "^1.0.3",
    "tslib": "^2.5.0",
    "yargs": "^17.7.1"
  },
  "devDependencies": {
    "@tsconfig/node14": "^1.0.3",
    "@types/debug": "^4.1.7",
    "@types/fs-extra": "^11.0.1",
    "@types/jest": "^29.5.0",
    "@types/node": "^18.15.11",
    "@types/signal-exit": "^3.0.1",
    "@types/tmp": "^0.2.3",
    "@types/yargs": "^17.0.24",
    "@typescript-eslint/eslint-plugin": "^5.57.0",
    "@typescript-eslint/parser": "^5.57.0",
    "eslint": "^8.37.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-jest": "^27.2.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-react": "^7.32.2",
    "execa": "^5.1.1",
    "fs-extra": "^11.1.1",
    "husky": "^4.3.7",
    "jest": "^29.5.0",
    "jest-extended": "^3.2.4",
    "jest-file-snapshot": "^0.5.0",
    "lint-staged": "^10.5.3",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.8.7",
    "tmp-promise": "^3.0.3",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.9.1",
    "ts-transformer-keys": "^0.4.4",
    "ttsc": "^0.3.1",
    "typescript": "^5.0.3",
    "typescript-4": "npm:typescript@4.3.x"
  },
  "peerDependencies": {
    "typescript": ">=4.3.0"
  }
}
