{
  "name": "better-all",
  "version": "0.0.7",
  "description": "Better Promise.all with automatic dependency optimization",
  "type": "module",
  "main": "./dist/es/index.js",
  "module": "./dist/es/index.js",
  "types": "./dist/es/index.d.ts",
  "author": "Shu Ding <g@shud.in>",
  "repository": "github:shuding/better-all",
  "license": "MIT",
  "exports": {
    ".": {
      "types": "./dist/es/index.d.ts",
      "import": "./dist/es/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "promise",
    "async",
    "parallel",
    "dependency",
    "optimization"
  ],
  "devDependencies": {
    "@types/node": "^22.10.5",
    "@vitest/coverage-v8": "^3.0.5",
    "bunchee": "^6.3.1",
    "typescript": "^5.9.3",
    "vitest": "^3.0.5"
  },
  "scripts": {
    "build": "bunchee",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}