This repository has been archived on 2026-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
nyx/node_modules/confbox/package.json
Nico e2667f8e12 Initial nyx project — fork of hermes-frontend
Forked from hermes-frontend, stripped openclaw/bun specifics:
- Auth tokens: openclaw_session -> nyx_session
- Vite proxy: localhost:3003 -> localhost:8000 (assay)
- Prod WS: wss://assay.loop42.de/ws
- Workspace paths: removed openclaw-specific paths
- Added missing deps: @heroicons/vue, overlayscrollbars-vue
- Branding: title -> nyx

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-31 20:23:27 +02:00

68 lines
1.8 KiB
JSON

{
"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"
}