mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 01:15:33 +00:00
Complication: the promise-status library used for testing our promise usage includes a .d.ts file that is not valid with current TS versions. We now delete theirs and provide our own, fixed version.
31 lines
770 B
JSON
31 lines
770 B
JSON
{
|
|
"name": "@keymanapp/gesture-recognizer",
|
|
"description": "The core gesture-recognition engine used by Keyman's Web-based OSKs.",
|
|
"devDependencies": {
|
|
"@keymanapp/resources-gosh": "*",
|
|
"mocha": "^10.0.0",
|
|
"mocha-teamcity-reporter": "^4.0.0",
|
|
"promise-status-async": "^1.2.10",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"imports": {
|
|
"#tools": "./build/tools/obj/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "gosh ./build.sh",
|
|
"test": "gosh ./test.sh"
|
|
},
|
|
"dependencies": {
|
|
"eventemitter3": "^5.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
|
|
}
|