{
  "name": "@txjs/bool",
  "version": "1.0.6",
  "description": "数据类型的校验工具，支持邮箱、手机号、URL、深度相等比较等",
  "sideEffects": false,
  "main": "./dist/index.cjs.js",
  "module": "./dist/index.esm.mjs",
  "types": "./dist/index.d.ts",
  "unpkg": "./dist/index.min.js",
  "jsdelivr": "./dist/index.min.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.esm.mjs",
      "require": "./dist/index.cjs.js"
    }
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yangtianxia/txjs.git",
    "directory": "packages/bool"
  },
  "keywords": [
    "txjs",
    "bool",
    "boolean",
    "validation",
    "types",
    "is-type",
    "type-guard",
    "typescript"
  ],
  "license": "MIT",
  "author": "yangtianxia <1304082170@qq.com>",
  "bugs": {
    "url": "https://github.com/yangtianxia/txjs/issues"
  },
  "homepage": "https://github.com/yangtianxia/txjs#readme",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/yangtianxia"
  },
  "scripts": {
    "clean": "rimraf ./dist",
    "lint": "eslint ./src --ext .ts",
    "format": "prettier ./src --write",
    "build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
    "build:bundle": "ts-node ../../scripts/build.ts",
    "build": "npm run clean && npm run lint && npm run build:types && npm run build:bundle",
    "dev": "npm run build -- --w",
    "test": "jest --config ../../jest.config.ts --testPathPattern=packages/bool"
  }
}