mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-08 09:55:32 +00:00
Starts to resolve the chaos of putting version numbers into every package.json file. Adds a new keyman-version package which mimics the version information in build-utils.sh. This will eventually replace resources/web-environment. Fixes the build for the lexical model compiler tools to remove refs to package.json version and use keyman-version instead. More fixes coming in a follow-up.
38 lines
1 KiB
JSON
38 lines
1 KiB
JSON
{
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@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",
|
|
"@zeit/ncc": "^0.21.0",
|
|
"semver": "^7.1.2",
|
|
"ts-node": "^8.6.2"
|
|
},
|
|
"engines": {
|
|
"node": "12"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"name": "@keymanapp/auto-history-action",
|
|
"private": false,
|
|
"repository": "https://github.com/keymanapp/auto-history-action",
|
|
"scripts": {
|
|
"build": "npm run clean:dist; npm run build:dist",
|
|
"build:dist": "ncc build src/index.ts --minify --source-map --v8-cache",
|
|
"build:ts": "tsc --project tsconfig.production.json",
|
|
"build:ts:watch": "tsc --project tsconfig.production.json --watch",
|
|
"clean": "run-p clean:*",
|
|
"clean:dist": "rm -rf dist",
|
|
"clean:lib": "rm -rf lib",
|
|
"types": "tsc --noEmit"
|
|
}
|
|
}
|