{
  "name": "@arthurka/ts-utils",
  "version": "3.18.2",
  "description": "Some convenient TS utilities.",
  "scripts": {
    "prune": "rm -rf node_modules && npm run prune:sub",
    "prune:sub": "rm -rf packages/*/node_modules",
    "build:clean": "rm -rf dist/*",
    "ts:noWatch": "tsc --noEmit",
    "ts": "npm run ts:noWatch -- -w",
    "lint:check": "eslint --ext js,jsx,ts,tsx src tests",
    "lint:fix": "npm run lint:check -- --fix",
    "build:js": "node scripts/build.js",
    "build:types": "tsc -p tsconfig.esm.json --emitDeclarationOnly && tsc -p tsconfig.cjs.json --emitDeclarationOnly && node scripts/addTsExpectErrors.cjs",
    "my-compile": "node ../my-compile.cjs",
    "build": "npm run build:clean && npm run build:js && npm run build:types && npm run my-compile",
    "pu": "npm pu && git p && git pt",
    "mocha": "node --loader ./scripts/ts-esm-loader.js ./node_modules/mocha/lib/cli/cli.js \"tests/**/*-test.ts\"",
    "dtslint": "dtslint tests/types && dtslint tests/types_NoNExactOptionalPropertyTypes && dtslint tests/types_NoDOMLib",
    "test": "npm run mocha && npm run dtslint",
    "prepare": "node -e \"try { require('husky').install(); } catch(e) { if(e.code !== 'MODULE_NOT_FOUND') throw e; }\""
  },
  "dependencies": {
    "node-fetch": "^2.6.2",
    "ts-toolbelt": "^9.6.0"
  },
  "devDependencies": {
    "@arthurka/eslint": "3.14.0",
    "@type-challenges/utils": "^0.1.1",
    "@types/lint-staged": "13.2.0",
    "@types/mocha": "^9.0.0",
    "@types/node": "^16.9.3",
    "@types/node-fetch": "^2.5.12",
    "dtslint": "^4.2.1",
    "esbuild": "^0.28.1",
    "husky": "^7.0.4",
    "lint-staged": "14.0.0",
    "mocha": "^9.1.3",
    "ts-node": "^10.4.0",
    "typescript": "5.8.3"
  },
  "type": "module",
  "main": "./dist/cjs/index.cjs",
  "types": "./dist/esm/index.d.ts",
  "module": "./dist/esm/index.js",
  "exports": {
    ".": {
      "types": "./dist/esm/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.cjs"
    },
    "./backend": {
      "types": "./dist/esm/backend.d.ts",
      "import": "./dist/esm/backend.js",
      "require": "./dist/cjs/backend.cjs"
    }
  },
  "typesVersions": {
    "*": {
      "backend": [
        "dist/esm/backend.d.ts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": "22.22.3",
    "npm": "10.9.8"
  },
  "packageManager": "npm@10.9.8",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [],
  "author": {
    "name": "ArthurKa",
    "email": "arthur.katruk@gmail.com"
  },
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ArthurKa/ts-utils.git"
  },
  "bugs": {
    "url": "https://github.com/ArthurKa/ts-utils/issues"
  },
  "homepage": "https://github.com/ArthurKa/ts-utils#readme"
}
