{
  "name": "@incubrain/helpers",
  "license": "MIT",
  "version": "0.0.16",
  "type": "module",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "default": "./dist/esm/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "incubrain",
    "core",
    "constants",
    "domains",
    "typescript",
    "business",
    "logic",
    "types"
  ],
  "dependencies": {
    "uuid": "^11.0.5"
  },
  "devDependencies": {
    "esbuild": "^0.25.0",
    "typescript": "^5.5.3"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/incubrain/core.git"
  },
  "homepage": "https://github.com/incubrain/core#readme",
  "scripts": {
    "dev": "tsx watch src/index.ts",
    "build": "pnpx tsx src/scripts/build.ts",
    "test": "vitest",
    "test:coverage": "vitest --coverage",
    "lint": "eslint src --ext .ts",
    "fmt": "prettier --write \"src/**/*.ts\"",
    "clean": "rimraf dist"
  }
}