mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
Fixes #9640. This ended up being somewhat more fragile than originally anticipated. For the `ajv` cli call to get the right versions, we needed to install ajv as a dev dependency in the top-level package.json as well as at the common/web/types level. Ajv does not do all that well with ESM yet, either, so we use esbuild to transform the compiled validators before building in typescript.
39 lines
989 B
JSON
39 lines
989 B
JSON
{
|
|
"name": "@keymanapp/web-utils",
|
|
"description": "Common utility functions used throughout other Keyman packages",
|
|
"main": "./build/obj/index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./build/obj/index.d.ts",
|
|
"import": "./build/obj/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "gosh ./build.sh",
|
|
"clean": "gosh ./build.sh clean"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
},
|
|
"author": "SIL International",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/keymanapp/keyman/issues"
|
|
},
|
|
"homepage": "https://github.com/keymanapp/keyman#readme",
|
|
"devDependencies": {
|
|
"@keymanapp/keyman-version": "*",
|
|
"@keymanapp/resources-gosh": "*",
|
|
"@types/node": "^14.0.5",
|
|
"c8": "^7.12.0",
|
|
"chai": "^4.3.4",
|
|
"mocha": "^10.0.0",
|
|
"mocha-teamcity-reporter": "^4.0.0",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"type": "module",
|
|
"paths": {
|
|
"@keymanapp/keyman-version": "*"
|
|
}
|
|
}
|