@hyperse/dependency-sync
Version:
A comprehensive Node.js utility for managing dependencies in monorepo environments, specifically designed for Hyperse plugin ecosystems.
85 lines (84 loc) • 2.43 kB
JSON
{
"name": "@hyperse/dependency-sync",
"version": "1.1.0",
"description": "A comprehensive Node.js utility for managing dependencies in monorepo environments, specifically designed for Hyperse plugin ecosystems.",
"keywords": [
"hyperse",
"typescript",
"monorepo",
"dependency management"
],
"repository": {
"type": "git",
"url": "git@github.com:hyperse-io/dependency-sync.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"./bin/",
"./dist/",
"./index.js"
],
"scripts": {
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
"changeset": "changeset",
"clean": "rimraf --no-glob ./dist ./_release ./coverage ./tsconfig.tsbuildinfo",
"cz": "cz",
"g:checkConflicts": "yarn node --import=@hyperse/ts-node/register ./scripts/checkConflicts.ts",
"g:syncDependencies": "yarn node --import=@hyperse/ts-node/register ./scripts/syncDependencies.ts && yarn constraints",
"lint": "eslint .",
"lint-fix": "yarn lint --fix",
"lint-staged-files": "lint-staged --allow-empty",
"next": "next build",
"prepare": "husky",
"release": "yarn build && changeset publish",
"test": "run-s test-unit",
"test-task": "vitest run",
"test-unit": "vitest run",
"typecheck": "tsc --project ./tsconfig.json --noEmit"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@manypkg/get-packages": "^3.1.0",
"globby": "^16.0.0",
"sort-package-json": "^3.4.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@hyperse/eslint-config-hyperse": "^1.4.10",
"@hyperse/ts-node": "^1.0.3",
"@types/node": "^24.10.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
},
"packageManager": "yarn@4.11.0",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}