{
  "name": "@txjs/shared",
  "version": "1.0.10",
  "description": "实用工具集合，包含深拷贝、对象操作、字符串转换、拦截器等",
  "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/shared"
  },
  "keywords": [
    "txjs",
    "shared",
    "utilities",
    "utils",
    "clone",
    "omit",
    "pick",
    "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"
  },
  "dependencies": {
    "shallow-clone": "^3.0.1",
    "@txjs/bool": "1.0.6"
  },
  "devDependencies": {
    "@types/shallow-clone": "^3.0.0"
  },
  "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/shared"
  }
}