65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"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"
|
|
],
|
|
"dependencies": {
|
|
"@oclif/core": "^1",
|
|
"@oclif/plugin-help": "^5",
|
|
"@oclif/plugin-plugins": "^2.0.1",
|
|
"@types/semver": "^7.3.10",
|
|
"semver": "^7.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.18.18",
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
|
"globby": "^11",
|
|
"oclif": "^2",
|
|
"shx": "^0.3.3",
|
|
"ts-node": "^10.2.1",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"turbo:build": "shx rm -rf dist && tsc --project tsconfig.json",
|
|
"build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name",
|
|
"lint": "eslint . --ext .ts --config .eslintrc",
|
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
"posttest": "pnpm lint",
|
|
"prepack": "pnpm build && oclif manifest"
|
|
},
|
|
"engines": {
|
|
"node": "^16.14.1",
|
|
"pnpm": "^8.6.7"
|
|
},
|
|
"types": "dist/index.d.ts"
|
|
}
|