mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
Does not affect the worker. Bundling is in a temp-script and not properly connected to our actual build infrastructure.
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "@keymanapp/gesture-recognizer",
|
|
"description": "The core gesture-recognition engine used by Keyman's Web-based OSKs.",
|
|
"devDependencies": {
|
|
"@keymanapp/resources-gosh": "*",
|
|
"@types/node": "^11.9.4",
|
|
"@types/sinon": "^10.0.13",
|
|
"chai": "^4.3.4",
|
|
"karma": "^6.4.1",
|
|
"karma-browserstack-launcher": "^1.6.0",
|
|
"karma-chai": "^0.1.0",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-firefox-launcher": "^1.1.0",
|
|
"karma-fixture": "^0.2.6",
|
|
"karma-html2js-preprocessor": "^1.1.0",
|
|
"karma-ie-launcher": "^1.0.0",
|
|
"karma-json-fixtures-preprocessor": "0.0.6",
|
|
"karma-mocha": "^2.0.1",
|
|
"karma-mocha-reporter": "^2.2.5",
|
|
"karma-safari-launcher": "^1.0.0",
|
|
"karma-teamcity-reporter": "^1.1.0",
|
|
"mocha": "^10.0.0",
|
|
"mocha-teamcity-reporter": "^4.0.0",
|
|
"promise-status-async": "^1.2.10",
|
|
"sinon": "^14.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"imports": {
|
|
"#tools": "./build/tools/obj/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "gosh ./build.sh",
|
|
"test": "gosh ./test.sh"
|
|
},
|
|
"dependencies": {
|
|
"eventemitter3": "^4.0.0"
|
|
},
|
|
"main": "./build/obj/index.js",
|
|
"exports": {
|
|
"es6-bundling": "./src/engine/index.ts",
|
|
"default": "./build/obj/index.js"
|
|
},
|
|
"types": "./build/obj/index.d.ts",
|
|
"type": "module",
|
|
"sideEffects": false
|
|
}
|