mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 00:45:32 +00:00
32 lines
769 B
JSON
32 lines
769 B
JSON
{
|
|
"dependencies": {
|
|
"@actions/core": "^1.9.1",
|
|
"@actions/github": "^2.1.0",
|
|
"typescript": "^4.5.4",
|
|
"yargs": "^15.1.0"
|
|
},
|
|
"description": "Automatically updates HISTORY.md based on pull requests",
|
|
"devDependencies": {
|
|
"@types/node": "^13.7.0",
|
|
"@types/semver": "^7.1.0",
|
|
"semver": "^7.1.2",
|
|
"ts-node": "^8.6.2"
|
|
},
|
|
"engines": {
|
|
"node": "16"
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"license": "MIT",
|
|
"main": "lib/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"
|
|
}
|
|
}
|