woocommerce/tools/package-release/package.json

73 lines
1.5 KiB
JSON
Raw Normal View History

{
"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"
],
2023-11-02 23:06:59 +00:00
"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": {
2023-12-09 15:12:20 +00:00
"@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": {
2023-12-09 15:12:20 +00:00
"@types/node": "^16.18.68",
"@woocommerce/eslint-plugin": "workspace:*",
2023-12-09 15:12:20 +00:00
"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",
2023-12-10 05:56:12 +00:00
"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",
2023-12-18 07:31:49 +00:00
"pnpm": "^8.12.1"
},
"types": "dist/index.d.ts",
"config": {
"ci": {
"lint": {
"command": "lint",
"changes": "src/**/*.ts"
}
}
}
}