UNPKG

json-fusion

Version:

Json-Fusion is a Node.js library designed to streamline the process of loading, merging, and reflecting directory hierarchies in JSON files. With Json-Fusion, you can consolidate information scattered across different JSON files, and reflect your filesyst

73 lines (72 loc) 1.98 kB
{ "name": "json-fusion", "version": "0.2.3", "description": "Json-Fusion is a Node.js library designed to streamline the process of loading, merging, and reflecting directory hierarchies in JSON files. With Json-Fusion, you can consolidate information scattered across different JSON files, and reflect your filesystem's structure directly in your data, all with just a few lines of code.", "keywords": [ "json", "yaml", "merge", "hierarchies" ], "repository": { "url": "https://github.com/hacomono-lib/json-fusion", "type": "git" }, "author": "mew-ton <mxl_usmarc@slmail.mewton.jp>", "license": "MIT", "engines": { "node": ">=14" }, "packageManager": "yarn@3.6.3", "type": "module", "files": [ "dist" ], "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "publishConfig": { "access": "public" }, "scripts": { "dev": "vitest", "build": "tsup", "test": "run-p test:*", "test:spec": "vitest --run --silent", "test:type": "tsc --noEmit -p tsconfig.json", "lint": "eslint --ext .ts .", "format": "prettier --write . --ignore-path=.eslintignore", "dedup": "yarn-deduplicate --strategy fewer" }, "dependencies": { "deepmerge": "^4.3.1", "globby": "^11.1.0" }, "devDependencies": { "@changesets/changelog-github": "^0.4.8", "@changesets/cli": "^2.26.2", "@typescript-eslint/eslint-plugin": "^6.7.3", "@typescript-eslint/parser": "^6.7.3", "eslint": "^8.50.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-import": "^2.28.1", "prettier": "^3.0.3", "tsup": "^7.2.0", "typescript": "^5.2.2", "vitest": "^0.34.6", "yaml": "^2.3.2", "yarn-run-all": "latest" }, "peerDependencies": { "typescript": ">= 4.0.0", "yaml": ">= 2.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true }, "yaml": { "optional": true } } }