Files
medusa-store/www/utils/packages/scripts/package.json
Shahed Nasser bd4d2fd554 docs-util: fixes following packages reorg (#9326)
- Typescript config aren't picked up properly anymore since they're moved to `_tsconfig.base.json` in the root. So, we now read the config from the config file.
- Update Typescript version in the `utils` monorepo to match that of the root monorepo
2024-09-26 17:22:08 +00:00

33 lines
852 B
JSON

{
"name": "scripts",
"private": true,
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"check:freshness": "node ./dist/freshness-check.js",
"generate:message": "node ./dist/get-generate-diff-message.js",
"check:release-commit": "node ./dist/check-release-commit.js",
"generate:changeset": "node ./dist/run-changeset.js",
"check:pr-files-count": "node ./dist/check-pr-files-count.js"
},
"version": "0.0.0",
"type": "module",
"dependencies": {
"@actions/core": "^1.10.1",
"@linear/sdk": "^1.22.0",
"@octokit/core": "^4.0.5",
"chalk": "^5.3.0",
"glob": "^10.3.10",
"randomcolor": "^0.6.2",
"ts-node": "^10.9.1",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/node": "^20.12.10",
"@types/randomcolor": "^0.5.8"
}
}