mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-20 07:17:42 +00:00
61 lines
1.6 KiB
JSON
61 lines
1.6 KiB
JSON
{
|
|
"name": "@keymanapp/kmc-model",
|
|
"description": "Keyman Developer lexical model compiler",
|
|
"keywords": [
|
|
"keyboard",
|
|
"keyman",
|
|
"unicode",
|
|
"lexical-model",
|
|
"predictive-text"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./build/src/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -b && npm run build-cjs",
|
|
"build-cjs": "esbuild build/src/lexical-model-compiler.js --bundle --platform=node --external:../../node_modules/* > build/cjs-src/lexical-model-compiler.cjs",
|
|
"test": "cd test && tsc -b && cd .. && c8 --reporter=lcov --reporter=text mocha",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
|
|
"contributors": [
|
|
"Eddie Antonio Santos <Eddie.Santos@nrc-cnrc.gc.ca>",
|
|
"Joshua Horton"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/keymanapp/keyman/issues"
|
|
},
|
|
"dependencies": {
|
|
"@keymanapp/keyman-version": "*",
|
|
"@keymanapp/models-types": "*",
|
|
"commander": "^3.0.0",
|
|
"typescript": "^4.9.5",
|
|
"xml2js": "^0.4.19"
|
|
},
|
|
"devDependencies": {
|
|
"@keymanapp/models-templates": "*",
|
|
"@keymanapp/models-wordbreakers": "*",
|
|
"@types/chai": "^4.1.7",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^10.14.6",
|
|
"@types/xml2js": "^0.4.5",
|
|
"c8": "^7.12.0",
|
|
"chai": "^4.3.4",
|
|
"chalk": "^2.4.2",
|
|
"esbuild": "^0.15.7",
|
|
"mocha": "^10.0.0",
|
|
"ts-node": "^10.9.1"
|
|
},
|
|
"mocha": {
|
|
"spec": "build/test/**/test-*.js",
|
|
"require": [
|
|
"source-map-support/register"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
}
|
|
}
|