mirror of
https://github.com/warkanum/monorepo-dep-checker.git
synced 2025-05-18 18:57:29 +00:00
70 lines
1.8 KiB
JSON
70 lines
1.8 KiB
JSON
{
|
|
"name": "@warkypublic/monorepo-dep-checker",
|
|
"version": "1.0.1",
|
|
"description": "A CLI tool to check and manage dependencies across packages in a monorepo",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"bin": {
|
|
"dep-check": "./bin/dep-check.js"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "vitest run --silent=false",
|
|
"lint": "eslint ./src"
|
|
},
|
|
"keywords": [
|
|
"monorepo",
|
|
"dependencies",
|
|
"workspace",
|
|
"package",
|
|
"dependency-checker",
|
|
"cli",
|
|
"tools",
|
|
"dependency-management",
|
|
"npm",
|
|
"yarn",
|
|
"pnpm"
|
|
],
|
|
"author": "Hein (Warkanum) Puth",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"chalk": "^5.3.0",
|
|
"semver": "^7.5.4",
|
|
"yargs": "^17.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.16.0",
|
|
"@types/node": "^22.10.1",
|
|
"@types/semver": "~7.5.8",
|
|
"@types/yargs": "~17.0.33",
|
|
"eslint": "^9.16.0",
|
|
"globals": "^15.13.0",
|
|
"prettier-eslint": "^16.3.0",
|
|
"typescript-eslint": "^8.18.0",
|
|
"typesync": "^0.14.0",
|
|
"vite": "^5.4.11",
|
|
"vitest": "^1.6.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.16"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/warkanum/monorepo-dep-checker"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/warkanum/monorepo-dep-checker/issues"
|
|
},
|
|
"homepage": "https://github.com/warkanum/monorepo-dep-checker#readme",
|
|
"packageManager": "pnpm@9.6.0+sha256.dae0f7e822c56b20979bb5965e3b73b8bdabb6b8b8ef121da6d857508599ca35"
|
|
}
|