UNPKG

git-json-resolver-semver

Version:

Plugin for git-json-resolver that applies semver-based merge strategies (max, min, secure, override) to resolve version conflicts in package.json and similar files.

78 lines (77 loc) 2.17 kB
{ "name": "git-json-resolver-semver", "author": "Mayank Kumar Chaudhari (https://mayank-chaudhari.vercel.app)", "private": false, "version": "1.0.0", "description": "Plugin for git-json-resolver that applies semver-based merge strategies (max, min, secure, override) to resolve version conflicts in package.json and similar files.", "license": "MPL-2.0", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "repository": "github:react18-tools/git-json-resolver-semver", "bugs": "https://github.com/react18-tools/git-json-resolver-semver/issues", "homepage": "https://github.com/react18-tools/git-json-resolver-semver/#readme", "sideEffects": false, "files": [ "dist/**" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "scripts": { "build": "tsup && tsc -p tsconfig-build.json && gzip -c dist/index.js | wc -c", "clean": "rm -rf dist", "dev": "tsup --watch && tsc -p tsconfig-build.json -w", "typecheck": "tsc --noEmit", "lint": "eslint src/", "lint:fix": "eslint src/ --fix", "test": "vitest run --coverage" }, "devDependencies": { "@repo/eslint-config": "workspace:*", "@repo/typescript-config": "workspace:*", "@types/node": "^24.3.1", "@vitest/coverage-v8": "^3.2.4", "compare-versions": "^6.1.1", "esbuild-plugin-rdi": "^0.0.0", "git-json-resolver": "^1.3.5", "tsup": "^8.5.0", "typescript": "^5.9.2", "vite-tsconfig-paths": "^5.1.4", "vitest": "^3.2.4" }, "funding": [ { "type": "github", "url": "https://github.com/sponsors/react18-tools" }, { "type": "github", "url": "https://github.com/sponsors/mayank1513" } ], "keywords": [ "git", "merge", "conflict-resolver", "json", "semver", "package.json", "git-json-resolver", "merge-driver", "conflict", "Progressive", "Seamless integration", "Modern", "Developer Experience", "DX", "mayank1513" ], "peerDependencies": { "git-json-resolver": "^1.2.0" } }