spiegel-keyman/resources/build/version/package.json
2023-02-09 12:39:15 +07:00

32 lines
774 B
JSON

{
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^2.1.0",
"typescript": "^4.9.5",
"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": "^10.9.1"
},
"engines": {
"node": ">=16.0"
},
"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"
}
}