{
  "name": "confbox",
  "version": "0.2.4",
  "description": "Compact YAML, TOML, JSONC, JSON5 and INI parser and serializer",
  "keywords": [
    "config",
    "ini",
    "json5",
    "jsonc",
    "toml",
    "unjs",
    "yaml"
  ],
  "license": "MIT",
  "repository": "unjs/confbox",
  "files": [
    "dist"
  ],
  "type": "module",
  "sideEffects": false,
  "types": "./dist/index.d.mts",
  "exports": {
    ".": "./dist/index.mjs",
    "./ini": "./dist/ini.mjs",
    "./json5": "./dist/json5.mjs",
    "./jsonc": "./dist/jsonc.mjs",
    "./toml": "./dist/toml.mjs",
    "./yaml": "./dist/yaml.mjs"
  },
  "scripts": {
    "build": "obuild",
    "dev": "vitest dev --coverage",
    "bench": "pnpm build && node test/bench.mjs",
    "lint": "oxlint && oxfmt --check src test",
    "lint:fix": "oxlint --fix && oxfmt src test",
    "prepack": "pnpm build",
    "release": "pnpm test && pnpm build && changelogen --release && npm publish && git push --follow-tags",
    "test": "pnpm lint && pnpm test:types && vitest run --coverage",
    "test:types": "tsgo --noEmit --skipLibCheck"
  },
  "devDependencies": {
    "@types/ini": "^4.1.1",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^25.2.1",
    "@typescript/native-preview": "7.0.0-dev.20260206.1",
    "@vitest/coverage-v8": "^4.0.18",
    "automd": "^0.4.3",
    "changelogen": "^0.6.2",
    "detect-indent": "^7.0.2",
    "ini": "^6.0.0",
    "jiti": "^2.6.1",
    "js-toml": "^1.0.2",
    "js-yaml": "^4.1.1",
    "json5": "^2.2.3",
    "jsonc-parser": "^3.3.1",
    "mitata": "^1.0.34",
    "obuild": "^0.4.26",
    "oxfmt": "^0.28.0",
    "oxlint": "^1.43.0",
    "smol-toml": "^1.6.0",
    "toml": "^3.0.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18",
    "yaml": "^2.8.2"
  },
  "packageManager": "pnpm@10.28.2"
}
