{
  "name": "@jsxx/ms",
  "version": "1.0.1",
  "type": "module",
  "description": "A lightweight, type-safe utility for converting between time durations and human-readable strings.",
  "author": "Aashish Panchal <aipanchal51@gmail.com>",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "main": "dist/index.cjs",
  "types": "dist/index.d.cts",
  "module": "dist/index.mjs",
  "scripts": {
    "build": "tsdown",
    "lint": "eslint \"src/**/*.ts\" --fix",
    "check-types": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "release": "pnpm build && pnpm test && npm publish"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "devDependencies": {
    "@repo/eslint": "workspace:*",
    "@repo/ts": "workspace:*",
    "@repo/vitest": "workspace:*",
    "@types/node": "catalog:",
    "eslint": "catalog:",
    "tsdown": "catalog:",
    "typescript": "catalog:",
    "vitest": "catalog:"
  },
  "keywords": [
    "ms",
    "milliseconds",
    "time",
    "duration",
    "convert",
    "parser",
    "formatter",
    "human-readable",
    "timeout",
    "delay",
    "seconds",
    "minutes",
    "hours"
  ],
  "bugs": {
    "url": "https://github.com/vajra-labs/jsxx/issues"
  },
  "homepage": "https://github.com/vajra-labs/jsxx/blob/main/docs/ms.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vajra-labs/jsxx.git",
    "directory": "pkgs/ms"
  },
  "engines": {
    "node": ">=20"
  }
}
