{
  "name": "@kcuf/helper-data",
  "version": "0.7.1",
  "description": "Helpers for saving frontend from backend data api insanity.",
  "keywords": [],
  "license": "MIT",
  "sideEffects": false,
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/justnewbee/kcuf.git"
  },
  "homepage": "https://github.com/justnewbee/kcuf/tree/main/packages-helper/helper-data",
  "bugs": "https://github.com/justnewbee/kcuf/issues",
  "author": {
    "name": "Jianchun Wang",
    "email": "justnewbee@gmail.com"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@babel/cli": "^7.29.7",
    "@babel/core": "^7.29.7",
    "@babel/plugin-transform-runtime": "^7.29.7",
    "@babel/preset-env": "^7.29.7",
    "@babel/preset-typescript": "^7.29.7",
    "rimraf": "^6.1.3",
    "typescript": "^6.0.3",
    "@kcuf/ts-config": "^0.2.0"
  },
  "peerDependencies": {
    "@babel/runtime": ">=7.0.0"
  },
  "dependencies": {
    "uuid": "^14.0.0"
  },
  "scripts": {
    "build:clean": "rimraf dist",
    "build:esm": "ESM=1 babel src -d dist/esm --extensions .ts,.tsx --source-maps",
    "build:cjs": "ESM=0 babel src -d dist/cjs --extensions .ts,.tsx",
    "build:types": "tsc -rootDir src --outDir dist/types --declaration --noEmit false --emitDeclarationOnly --isolatedModules false",
    "build": "pnpm build:esm && pnpm build:cjs && pnpm build:types",
    "watch": "pnpm build:esm -w"
  }
}