{
  "name": "tsconfig-to-dual-package",
  "version": "1.2.0",
  "description": "A simple tool that add package.json({\"type\":\"commonjs\"/\"module\"}) to TypeScript outDir for dual package.",
  "type": "commonjs",
  "keywords": [
    "node",
    "typescript",
    "esm",
    "cjs",
    "dualpackage",
    "commonjs",
    "mjs"
  ],
  "homepage": "https://github.com/azu/tsconfig-to-dual-package",
  "bugs": {
    "url": "https://github.com/azu/tsconfig-to-dual-package/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/azu/tsconfig-to-dual-package.git"
  },
  "license": "MIT",
  "author": "azu",
  "sideEffects": false,
  "bin": {
    "tsconfig-to-dual-package": "bin/cmd.mjs"
  },
  "directories": {
    "lib": "lib",
    "test": "test"
  },
  "engines": {
    "node": ">=18.3.0 || >=16.17.0"
  },
  "files": [
    "bin/",
    "lib/",
    "module/",
    "src/"
  ],
  "scripts": {
    "build": "tsc -p . && tsc -p ./tsconfig.cjs.json && node bin/cmd.mjs",
    "clean": "git clean -fx module/ lib/",
    "format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
    "prepare": "git config --local core.hooksPath .githooks",
    "prepublishOnly": "npm run clean && npm run build",
    "test": "mocha",
    "updateSnapshots": "UPDATE_SNAPSHOT=1 npm run test",
    "watch": "tsc -p . --watch"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,css}": [
      "prettier --write"
    ]
  },
  "prettier": {
    "printWidth": 120,
    "singleQuote": false,
    "tabWidth": 4,
    "trailingComma": "none"
  },
  "devDependencies": {
    "@types/mocha": "^10.0.1",
    "@types/node": "^20.1.2",
    "lint-staged": "^13.2.2",
    "mocha": "^10.2.0",
    "prettier": "^2.8.8",
    "ts-node": "^10.9.1",
    "ts-node-test-register": "^10.0.0",
    "typescript": "^5.0.4"
  },
  "packageManager": "yarn@1.22.18",
  "dependencies": {
    "resolve-tsconfig": "^1.3.0"
  },
  "peerDependencies": {
    "typescript": ">=4.0.0"
  }
}