{
  "name": "wf-utils",
  "version": "0.0.9",
  "description": "支持 ESM/CommonJS 的工具库",
  "main": "dist/cjs/index.js",
  "module": "dist/mjs/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "npm run clean && run-p build:*",
    "clean": "shx rm -rf dist && shx mkdir -p dist/cjs && shx mkdir dist/mjs",
    "build:cjs": "tsc --build tsconfig.cjs.json && shx mv dist/cjs/*.d.ts dist && shx rm -rf dist/cjs/**/*.d.ts",
    "build:mjs": "tsc --build tsconfig.mjs.json"
  },
  "devDependencies": {
    "npm-run-all": "^4.1.5",
    "shx": "^0.3.3",
    "typescript": "^4.1.3"
  },
  "repository": "git+https://github.com/hxulin/wf-utils.git",
  "author": "hxulin",
  "license": "MIT"
}
