* feat(ci,oas) run oas ci on all PRs * fix(ci,oas) move oas ci script to a package under the oas workspace * chore(changeset): patch
34 lines
998 B
JSON
34 lines
998 B
JSON
{
|
|
"name": "@medusajs/oas-github-ci",
|
|
"version": "1.0.0",
|
|
"description": "OAS Github CI",
|
|
"main": "scripts/build-openapi.js",
|
|
"files": [
|
|
"scripts"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/oas/oas-github-ci"
|
|
},
|
|
"publishConfig": {
|
|
"access": "restricted"
|
|
},
|
|
"author": "Medusa",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"ci": "node scripts/build-openapi.js",
|
|
"preview:admin": "yarn redocly preview-docs ../../../docs/api/admin/openapi.yaml --config=../../../docs-util/redocly/config.yaml",
|
|
"preview:store": "yarn redocly preview-docs ../../../docs/api/store/openapi.yaml --config=../../../docs-util/redocly/config.yaml",
|
|
"test": "jest --passWithNoTests",
|
|
"test:unit": "jest --passWithNoTests"
|
|
},
|
|
"dependencies": {
|
|
"@medusajs/medusa-oas-cli": "*",
|
|
"@readme/openapi-parser": "^2.4.0",
|
|
"@redocly/cli": "1.0.0-beta.123",
|
|
"execa": "^5.1.1",
|
|
"js-yaml": "^4.1.0"
|
|
}
|
|
}
|