lockfile-sync-check
Version:
A command-line tool to check if your package manager's lockfile is in sync with the latest changes in your Git repository
56 lines • 1.44 kB
JSON
{
"name": "lockfile-sync-check",
"version": "0.1.1",
"description": "A command-line tool to check if your package manager's lockfile is in sync with the latest changes in your Git repository",
"keywords": [
"git",
"lockfile",
"npm",
"pnpm",
"sync",
"yarn"
],
"bugs": "https://github.com/a145789/lockfile-sync-check/issues",
"license": "MIT",
"author": "clencat <2091927351@qq.com>",
"repository": {
"type": "git",
"url": "https://github.com/a145789/lockfile-sync-check"
},
"bin": {
"lockfile-sync-check": "./dist/cli.js"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"devDependencies": {
"@types/node": "^24.10.0",
"@varlet/release": "^1.0.2",
"@vitest/coverage-v8": "^4.0.18",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"oxlint-tsgolint": "^0.11.4",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"scripts": {
"dev": "bun run ./src/cli.ts",
"dev:watch": "tsdown --watch",
"build": "tsdown",
"lint": "oxlint --type-aware --type-check && oxfmt --check",
"format": "oxlint --fix && oxfmt",
"release": "pnpm run build && bun run ./scripts/release.ts",
"test": "vitest",
"test:coverage": "vitest run --coverage"
}
}