{ "name": "package-release", "version": "0.1.0", "description": "A tool to Monorepo JS packages.", "author": "Automattic", "bin": { "package-release": "./bin/run" }, "homepage": "https://github.com/woocommerce/woocommerce", "license": "GPLv2", "main": "dist/index.js", "repository": "woocommerce/woocommerce", "files": [ "/bin", "/dist", "/npm-shrinkwrap.json", "/oclif.manifest.json" ], "scripts": { "build": "shx rm -rf dist && tsc --project tsconfig.json", "lint": "eslint . --ext .ts --config .eslintrc", "prepack": "pnpm build && oclif manifest", "postpack": "shx rm -f oclif.manifest.json", "posttest": "pnpm lint" }, "dependencies": { "@oclif/core": "^1.26.2", "@oclif/plugin-help": "^5.2.20", "@oclif/plugin-plugins": "^2.4.7", "@types/semver": "^7.5.6", "semver": "^7.5.4" }, "devDependencies": { "@types/node": "^16.18.68", "@woocommerce/eslint-plugin": "workspace:*", "globby": "^11.1.0", "oclif": "^2.7.0", "shx": "^0.3.4", "ts-node": "^10.9.2", "tslib": "^2.6.2", "typescript": "^5.3.3", "wireit": "0.14.1" }, "oclif": { "bin": "package-release", "dirname": "package-release", "commands": "./dist/commands", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-plugins" ], "topicSeparator": " ", "topics": { "package-release": { "description": "Releases JS packages" } } }, "engines": { "node": "^16.14.1", "pnpm": "^8.12.1" }, "types": "dist/index.d.ts", "config": { "ci": { "lint": { "command": "lint", "changes": "src/**/*.ts" } } } }