woocommerce/tools/release-posts/package.json
Vladimir Reznichenko 58b2ef6305
Some checks failed
Blocks Playwright Tests / Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }} (1, 10) (push) Failing after 11m1s
Blocks Playwright Tests / Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }} (10, 10) (push) Failing after 10m59s
Blocks Playwright Tests / Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }} (2, 10) (push) Failing after 10m58s
Blocks Playwright Tests / Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }} (5, 10) (push) Failing after 10m52s
Blocks Playwright Tests / Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }} (3, 10) (push) Failing after 17m10s
Blocks Playwright Tests / Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }} (4, 10) (push) Failing after 23m58s
Blocks Playwright Tests / Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }} (6, 10) (push) Failing after 24m0s
Blocks Playwright Tests / Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }} (7, 10) (push) Failing after 24m26s
Blocks Playwright Tests / Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }} (8, 10) (push) Failing after 24m35s
Blocks Playwright Tests / Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }} (9, 10) (push) Failing after 8m7s
Blocks Playwright Tests / Create GitHub issues for flaky tests (push) Has been skipped
Blocks Playwright Tests / Merge Artifacts (push) Has been skipped
Nightly builds / Nightly builds (push) Failing after 13m59s
Process stale issues / stale (push) Successful in 22s
Storybook GitHub Pages / deploy (push) Has been skipped
[dev] Bump pnpm version to 9.15.0 (#54189)
This PR bumps the pnpm version requirements and adds automatic corepack enablement in git-hooks to enable out-of-the-box pnpm version migration.

---------

Co-authored-by: rjchow <me@rjchow.com>
Co-authored-by: github-actions <github-actions@github.com>
2025-01-13 10:45:03 +01:00

55 lines
1.2 KiB
JSON

{
"name": "release-posts",
"version": "0.0.1",
"description": "Automate release post generation for Wordpress plugins",
"main": " ",
"scripts": {
"lint": "tsc --noEmit",
"release-post": "node -r ts-node/register ./commands/release-post/index.ts"
},
"author": "Automattic",
"license": "GPL-2.0-or-later",
"engines": {
"node": "^20.11.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.4",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/lodash.shuffle": "^4.2.9",
"@types/node": "20.x.x",
"@types/node-fetch": "^2.6.9",
"@types/semver": "^7.5.6",
"typescript": "5.7.x",
"wireit": "0.14.3"
},
"dependencies": {
"@commander-js/extra-typings": "^0.1.0",
"@octokit/rest": "^19.0.13",
"@woocommerce/monorepo-utils": "workspace:*",
"code-analyzer": "workspace:*",
"commander": "9.4.0",
"dotenv": "^15.0.1",
"ejs": "^3.1.9",
"enquirer": "^2.4.1",
"express": "^4.18.2",
"form-data": "^4.0.0",
"lodash.shuffle": "^4.2.0",
"node-fetch": "^2.7.0",
"open": "^8.4.2",
"semver": "^7.5.4",
"ts-node": "^10.9.2"
},
"config": {
"ci": {
"lint": {
"command": "lint",
"changes": [
"commands/**/*.ts",
"lib/**/*.ts"
]
}
}
}
}