spiegel-keyman/resources/build/version/package.json
Marc Durdin 92a0938b88 chore: add @types/node to resources/build/version
Test-bot: skip
Build-bot: skip
2026-05-13 17:24:38 +02:00

31 lines
796 B
JSON

{
"description": "Automatically updates HISTORY.md based on pull requests",
"type": "module",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"emoji-regex": "^10.3.0",
"typescript": "^5.4.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^25.7.0",
"@types/semver": "^7.1.0",
"@types/yargs": "^17.0.26",
"semver": "^7.5.4"
},
"files": [
"src"
],
"license": "MIT",
"main": "build/src/index.js",
"name": "@keymanapp/auto-history-action",
"private": true,
"scripts": {
"build:ts": "tsc --project tsconfig.production.json",
"build:ts:watch": "tsc --project tsconfig.production.json --watch",
"clean": "run-p clean:*",
"clean:lib": "rm -rf lib",
"types": "tsc --noEmit"
}
}