{
  "name": "@lzwme/fe-utils",
  "description": "前端 node、web 项目常用工具函数集合。",
  "version": "1.9.2",
  "main": "cjs/index.js",
  "module": "esm/index.js",
  "typings": "cjs/index.d.ts",
  "license": "MIT",
  "repository": "https://github.com/lzwme/fe-utils.git",
  "author": {
    "name": "renxia",
    "email": "lzwy0820@qq.com",
    "url": "https://lzw.me"
  },
  "keywords": [
    "node",
    "utils",
    "function utils",
    "typescript"
  ],
  "scripts": {
    "prepare": "husky || true",
    "dev": "npm run watch:build",
    "start": "npm run watch",
    "build": "run-s clean && run-p build:*",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.module.json",
    "fix": "run-s fix:*",
    "fix:lint": "eslint src/**/*.ts --fix",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "lint": "flh --eslint --tscheck --prettier --jest",
    "test": "run-s test:*",
    "test:lint": "eslint src/**/*.ts",
    "test:prettier": "prettier \"src/**/*.ts\" --list-different",
    "test:unit": "npm run cov",
    "watch": "run-s clean build:cjs && run-p \"build:cjs -- -w\" \"test:unit -- --watch\"",
    "watch:build": "tsc -p tsconfig.cjs.json -w",
    "watch:test": "jest --watch",
    "cov": "jest --coverage --silent",
    "cov:html": "jest --coverage --silent --reporter=html",
    "doc": "run-s doc:html",
    "doc:html": "typedoc src/ src/common src/web src/node --exclude **/*.spec.ts --out docs --tsconfig tsconfig.module.json",
    "doc:json": "typedoc src/ src/common src/web src/node --exclude **/*.spec.ts --json docs/typedoc.json --tsconfig tsconfig.module.json",
    "version": "standard-version",
    "release": "run-s test build doc:html",
    "release-version": "run-s release version",
    "clean": "flh rm -f ./cjs ./esm ./docs"
  },
  "engines": {
    "node": ">=14.18.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.com"
  },
  "files": [
    "esm",
    "cjs"
  ],
  "dependencies": {
    "console-log-colors": "^0.5.0",
    "tslib": "^2.8.1"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.0",
    "@iarna/toml": "^2.2.5",
    "@jest/core": "^30",
    "@jest/types": "^30",
    "@lzwme/fed-lint-helper": "^2.6.6",
    "@types/eslint": "^9.6.1",
    "@types/jest": "^30.0.0",
    "@types/micromatch": "^4.0.10",
    "@types/node": "^24.9.2",
    "@typescript-eslint/eslint-plugin": "^8.46.2",
    "@typescript-eslint/parser": "^8.46.2",
    "compressing": "^2.0.0",
    "eslint": "^9.39.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-jest": "^29.0.1",
    "eslint-plugin-prettier": "^5.5.4",
    "eslint-plugin-unicorn": "^62.0.0",
    "husky": "^9.1.7",
    "jest": "^30.2.0",
    "json5": "^2.2.3",
    "micromatch": "^4.0.8",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.6.2",
    "standard-version": "^9.5.0",
    "ts-jest": "^29.4.5",
    "ts-jest-resolver": "^2.0.1",
    "ts-node": "^10.9.2",
    "typedoc": "^0.28.14",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.46.2",
    "windows-process-tree": "^0.4.0"
  },
  "peerDependencies": {
    "@iarna/toml": "^2.2.5",
    "compressing": "^2.0.0",
    "windows-process-tree": "^0.4.0"
  },
  "peerDependenciesMeta": {
    "compressing": {
      "optional": true
    },
    "windows-process-tree": {
      "optional": true
    },
    "@iarna/toml": {
      "optional": true
    }
  }
}
