{
  "name": "@thesunny/script-utils",
  "version": "0.2.2",
  "license": "MIT",
  "author": "Sunny Hirai <thesunny@gmail.com>",
  "type": "commonjs",
  "files": [
    ".dist/**/*"
  ],
  "main": ".dist/src/index.js",
  "types": ".dist/src/index.d.ts",
  "bin": {
    "git-stamp": ".dist/src/scripts/git-stamp.js",
    "is-git-branch": ".dist/src/scripts/is-git-branch.js",
    "is-git-clean": ".dist/src/scripts/is-git-clean.js"
  },
  "devDependencies": {
    "@types/fs-extra": "^9.0.13",
    "@types/jest": "^29",
    "@types/node": "^18.7.23",
    "@types/prompt-sync": "^4.1.1",
    "@typescript-eslint/eslint-plugin": "^5.15.0",
    "@typescript-eslint/parser": "^5.15.0",
    "concurrently": "^7.2",
    "eslint": "^8.4.1",
    "eslint-config-prettier": "^8.1.0",
    "eslint-import-resolver-node": "^0.3",
    "eslint-import-resolver-typescript": "^3.5",
    "eslint-plugin-import": "^2.26",
    "eslint-plugin-no-secrets": "^0.8.9",
    "eslint-plugin-react": "^7.27.1",
    "eslint-plugin-simple-import-sort": "^8.0",
    "jest": "^29",
    "prettier": "^2",
    "ts-jest": "^29",
    "ts-node": "^10.9.1",
    "tsc": "^2.0.4",
    "tsconfig-paths": "^4.1.0",
    "type-fest": "^2.5.2",
    "typescript": "^4.8.4"
  },
  "dependencies": {
    "chalk": "^4",
    "fs-extra": "^10.0.0",
    "globby": "^11.1.0",
    "jest-diff": "^27.5.1",
    "jsome": "^2.5.0",
    "prompt-sync": "^4.2.0",
    "unit-logger": "^1.0.3"
  },
  "scripts": {
    "--- npm": "# build npm",
    "build:npm": "rm -rf ./.dist/ && tsc -p tsconfig.tsc.json",
    "publish:npm": "yarn lint && yarn test:once && yarn build:npm && yarn npm publish --access=public || echo '\"npm publish --access=public' to publish to npm",
    "--- test": "#",
    "test:once": "yarn test:clearcache && jest --config=jest.config.js",
    "test:watch": "jest --watch --config=jest.fast.config.js",
    "test:watch:types": "yarn test:clearcache && jest --watch --config=jest.config.js",
    "test:clearcache": "jest --clearCache",
    "--- examples": "#",
    "example:copy": "ts-node --project tsconfig.ts-node.json examples/copy-file.ts",
    "example:is-git-clean": "node ./.dist/src/scripts/is-git-clean.js",
    "example:git-stamp": "node ./.dist/src/scripts/git-stamp.js temp",
    "-- preset": "# Run preset from @thesunny/presets",
    "preset": "ts-node --project node_modules/@thesunny/presets/tsconfig.ts-node.json node_modules/@thesunny/presets/bin/index.ts",
    "-- fix": "# fix syntax",
    "fix:prettier": "yarn lint:prettier --write",
    "fix:eslint": "yarn lint:eslint --fix",
    "-- lint": "# lint syntax",
    "lint": "concurrently 'yarn lint:prettier' 'yarn lint:eslint' 'yarn lint:tsc'",
    "lint:prettier": "prettier --check \"**/*.{css,md,js,jsx,json,ts,tsx}\"",
    "lint:eslint": "eslint .",
    "lint:tsc": "tsc --build ./ --force",
    "-- end": "# end"
  },
  "dependenciesComments": {
    "chalk": "Must be version 4. 5 will break in ts-jest because it is esm only. Fix supposed to be in typescript 4.6."
  }
}