spiegel-keyman/resources/build/version/package.json
Marc Durdin db514e0dc5 fix(common): update emoji stripping for Unicode 15.1
Fixes #11220.

Replaces the sed script for matching emoji in ios prepRelease with a
tiny node project that uses emoji-regex package, to reduce future
maintenance.

Also strips lingering emoji and :xxx: emoji shortcut strings from
HISTORY.md. Note that :xxx: are not stripped programatically at this
time.
2024-04-18 09:05:30 +07:00

32 lines
821 B
JSON

{
"description": "Automatically updates HISTORY.md based on pull requests",
"type": "module",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^2.1.0",
"emoji-regex": "^10.3.0",
"typescript": "^4.9.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^13.7.0",
"@types/semver": "^7.1.0",
"@types/yargs": "^17.0.26",
"semver": "^7.5.2",
"ts-node": "^10.9.1"
},
"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"
}
}