woocommerce/tools/monorepo-merge/package.json

78 lines
1.7 KiB
JSON

{
"name": "monorepo-merge",
"version": "0.0.0",
"description": "A tool for merging repositories into the WooCommerce Monorepo.",
"author": "Automattic",
"bin": {
"monorepo-merge": "./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",
"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",
"@octokit/graphql": "4.8.0"
},
"devDependencies": {
"@octokit/request-error": "^3.0.3",
"@types/node": "^16.18.68",
"@woocommerce/eslint-plugin": "workspace:*",
"eslint": "^8.55.0",
"globby": "^11.1.0",
"jscodeshift": "^0.13.1",
"oclif": "^2.7.0",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"wireit": "0.14.3"
},
"oclif": {
"bin": "monorepo-merge",
"dirname": "monorepo-merge",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {
"merge": {
"description": "Merges other repositories into the monorepo."
},
"transfer-issues": {
"description": "Transfers issues from other repositories into the monorepo."
}
}
},
"engines": {
"node": "^20.11.1",
"pnpm": "9.1.3"
},
"types": "dist/index.d.ts",
"config": {
"ci": {
"lint": {
"command": "lint",
"changes": "src/**/*.ts"
}
}
}
}