| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 | {  "name": "confbox",  "version": "0.1.8",  "description": "Compact and high quality YAML, TOML, JSONC and JSON5 parsers",  "keywords": [    "yaml",    "toml",    "jsonc",    "json5",    "unjs",    "config"  ],  "repository": "unjs/confbox",  "license": "MIT",  "sideEffects": false,  "type": "module",  "exports": {    ".": {      "types": "./dist/index.d.ts",      "import": "./dist/index.mjs",      "require": "./dist/index.cjs"    },    "./json5": {      "types": "./dist/json5.d.ts",      "import": "./dist/json5.mjs",      "require": "./dist/json5.cjs"    },    "./jsonc": {      "types": "./dist/jsonc.d.ts",      "import": "./dist/jsonc.mjs",      "require": "./dist/jsonc.cjs"    },    "./toml": {      "types": "./dist/toml.d.ts",      "import": "./dist/toml.mjs",      "require": "./dist/toml.cjs"    },    "./yaml": {      "types": "./dist/yaml.d.ts",      "import": "./dist/yaml.mjs",      "require": "./dist/yaml.cjs"    }  },  "main": "./dist/index.cjs",  "module": "./dist/index.mjs",  "types": "./dist/index.d.ts",  "files": [    "dist",    "*.d.ts"  ],  "scripts": {    "build": "unbuild",    "dev": "vitest dev --coverage",    "bench": "pnpm build && node test/bench.mjs",    "lint": "eslint && prettier -c src test",    "lint:fix": "eslint --fix && prettier -c src test -w",    "prepack": "pnpm build",    "release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",    "test": "pnpm lint && pnpm test:types && vitest run --coverage",    "test:types": "tsc --noEmit --skipLibCheck"  },  "devDependencies": {    "@types/js-yaml": "^4.0.9",    "@types/node": "^22.7.4",    "@vitest/coverage-v8": "^2.1.2",    "automd": "^0.3.10",    "changelogen": "^0.5.7",    "detect-indent": "^7.0.1",    "eslint": "^9.12.0",    "eslint-config-unjs": "^0.4.1",    "jiti": "^2.3.1",    "js-toml": "^1.0.0",    "js-yaml": "^4.1.0",    "json5": "^2.2.3",    "jsonc-parser": "^3.3.1",    "mitata": "^1.0.10",    "prettier": "^3.3.3",    "smol-toml": "^1.3.0",    "toml": "^3.0.0",    "typescript": "^5.6.2",    "unbuild": "^2.0.0",    "vitest": "^2.1.2",    "yaml": "^2.5.1"  },  "packageManager": "pnpm@9.12.0"}
 |