spiegel-keyman/resources/build/version/package.json
Marc Durdin 9168d896e7 chore(common): remove unused ncc dependency
The `build:dist` script was never used; increment-version.sh uses only
`build:ts`.
2022-09-19 14:47:37 +10:00

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"
}
}