{
  "name": "async-primitives",
  "version": "1.7.0",
  "description": "A collection of primitive functions for asynchronous operations",
  "keywords": [
    "async",
    "promises",
    "primitives",
    "utilities",
    "typescript",
    "javascript"
  ],
  "author": "Kouji Matsui (@kekyo@mi.kekyo.net)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/kekyo/async-primitives.git"
  },
  "homepage": "https://github.com/kekyo/async-primitives#readme",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "vite build",
    "test": "npm run test:root && npm run test:browser",
    "test:root": "npm run build && vitest run",
    "test:browser": "npm run build && npx playwright test --reporter=line",
    "benchmark": "tsx benchmarks/benchmark.ts",
    "benchmark:json": "tsx benchmarks/benchmark.ts --output=json",
    "benchmark:update-readme": "tsx benchmarks/update-readme.ts",
    "pack": "npm run build && screw-up pack --pack-destination ./artifacts"
  },
  "dependencies": {},
  "devDependencies": {
    "@playwright/test": ">=1.53.1",
    "@types/node": ">=20.10.0",
    "@vitest/coverage-v8": ">=1.0.0",
    "playwright": ">=1.53.1",
    "prettier-max": ">=1.14.0",
    "screw-up": ">=1.30.0",
    "tinybench": ">=4.0.1",
    "tsx": ">=4.19.0",
    "typescript": ">=5.3.0",
    "vite": ">=5.0.0",
    "unplugin-dts": ">=1.0.0-beta.6",
    "vitest": ">=1.0.0"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "git": {
    "tags": [
      "1.7.0"
    ],
    "branches": [
      "main"
    ],
    "version": "1.7.0",
    "commit": {
      "hash": "9472fbd5310b92690d84aaafb897429a04c013c5",
      "shortHash": "9472fbd",
      "date": "2026-04-02T22:30:55+09:00",
      "message": "Merge branch 'develop'"
    }
  },
  "buildDate": "2026-04-02T22:32:48+09:00"
}