mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
31 lines
796 B
JSON
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"
|
|
}
|
|
}
|