mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 01:15:33 +00:00
Uses @web/test-runner to run it, making it our first integrated test with the new testing library
47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"name": "@keymanapp/lm-worker",
|
|
"description": "Keyman/Predictive Text worker",
|
|
"main": "./build/lib/worker-main.wrapped.js",
|
|
"exports": {
|
|
"./worker-main.wrapped.js": {
|
|
"es6-bundling": "./build/lib/worker-main.wrapped.js",
|
|
"default": "./build/lib/worker-main.wrapped.es5.js"
|
|
},
|
|
"./worker-main.wrapped.min.js": {
|
|
"es6-bundling": "./build/lib/worker-main.wrapped.min.js",
|
|
"default": "./build/lib/worker-main.wrapped.es5.min.js"
|
|
}
|
|
},
|
|
"imports": {
|
|
"#./*.js": "./build/obj/*.js",
|
|
"#./correction/*.js": "./build/obj/correction/*.js",
|
|
"#./models/*.js": "./build/obj/models/*.js"
|
|
},
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "gosh ./build.sh test",
|
|
"build": "gosh ./build.sh",
|
|
"clean": "gosh ./build.sh clean"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@keymanapp/common-test-resources": "*",
|
|
"@keymanapp/models-types": "*",
|
|
"@keymanapp/resources-gosh": "*",
|
|
"c8": "^7.12.0",
|
|
"combine-source-map": "^0.8.0",
|
|
"mocha": "^10.0.0",
|
|
"mocha-teamcity-reporter": "^4.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"dependencies": {
|
|
"@keymanapp/keyman-version": "*",
|
|
"@keymanapp/models-templates": "*",
|
|
"@keymanapp/models-wordbreakers": "*",
|
|
"@keymanapp/web-utils": "*",
|
|
"es6-shim": "^0.35.5",
|
|
"string.prototype.codepointat": "^0.2.1",
|
|
"string.prototype.startswith": "^0.2.0"
|
|
}
|
|
}
|