{
  "name": "@dr.pogodin/js-utils",
  "version": "0.1.8",
  "description": "Collection of JavaScript (TypeScript) utilities.",
  "main": "./build/module/index.js",
  "module": "./build/module/index.js",
  "types": "./build/types/index.d.ts",
  "exports": {
    "types": "./build/types/index.d.ts",
    "require": "./build/common/index.js",
    "default": "./build/module/index.js"
  },
  "scripts": {
    "build": "rimraf build && npm run build:common && npm run build:module && npm run build:types",
    "build:common": "rimraf build/common && babel src -x .ts --out-dir build/common --source-maps",
    "build:module": "rimraf build/module && babel src -x .ts --out-dir build/module --source-maps --config-file ./babel.module.config.js",
    "build:types": "rimraf build/types && tsc --project tsconfig.types.json",
    "jest": "npm run jest:types && npm run jest:logic",
    "jest:logic": "jest --config jest.config.js --no-cache",
    "jest:types": "tstyche",
    "lint": "eslint --cache",
    "test": "npm run lint && npm run typecheck && npm run jest",
    "typecheck": "tsc"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/birdofpreyru/js-utils.git"
  },
  "keywords": [
    "javascript",
    "util",
    "utility"
  ],
  "author": "Dr. Sergey Pogodin <doc@pogodin.studio> (https://dr.pogodin.studio)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/birdofpreyru/js-utils/issues"
  },
  "homepage": "https://github.com/birdofpreyru/js-utils#readme",
  "devDependencies": {
    "@babel/cli": "^7.28.6",
    "@babel/core": "^7.29.0",
    "@babel/plugin-transform-runtime": "^7.29.0",
    "@babel/preset-env": "^7.29.5",
    "@babel/preset-typescript": "^7.28.5",
    "@dr.pogodin/eslint-configs": "^0.2.13",
    "@tsconfig/recommended": "^1.0.13",
    "@types/jest": "^30.0.0",
    "babel-jest": "^30.4.1",
    "babel-plugin-add-import-extension": "^1.6.0",
    "jest": "^30.4.2",
    "mockdate": "^3.0.5",
    "rimraf": "^6.1.3",
    "tstyche": "^7.1.0",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "@babel/runtime": "^7.29.2"
  }
}
