mirror of
https://github.com/warkanum/monorepo-dep-checker.git
synced 2025-05-18 18:57:29 +00:00
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"name": "@warkypublic/monorepo-dep-checker",
|
|
"version": "1.0.0",
|
|
"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"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "vitest run",
|
|
"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": "^8.55.0",
|
|
"vite": "^5.0.0",
|
|
"vitest": "^1.0.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"
|
|
} |