mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
Does not affect the worker. Bundling is in a temp-script and not properly connected to our actual build infrastructure.
78 lines
2.3 KiB
JSON
78 lines
2.3 KiB
JSON
{
|
|
"name": "@keymanapp/keyboard-processor",
|
|
"description": "Core module for Keyman keyboard support in KeymanWeb.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
},
|
|
"keywords": [
|
|
"input",
|
|
"languages",
|
|
"keyboards"
|
|
],
|
|
"author": "SIL International",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/keymanapp/keyman/issues"
|
|
},
|
|
"homepage": "https://github.com/keymanapp/keyman#readme",
|
|
"devDependencies": {
|
|
"@keymanapp/resources-gosh": "*",
|
|
"c8": "^7.12.0",
|
|
"chai": "^4.3.4",
|
|
"karma": "^6.4.1",
|
|
"karma-chai": "^0.1.0",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-mocha": "^2.0.1",
|
|
"karma-mocha-reporter": "^2.2.5",
|
|
"karma-teamcity-reporter": "^1.1.0",
|
|
"mocha": "^10.0.0",
|
|
"mocha-teamcity-reporter": "^4.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"scripts": {
|
|
"build": "gosh build.sh",
|
|
"clean": "gosh build.sh clean",
|
|
"test": "gosh build.sh test"
|
|
},
|
|
"dependencies": {
|
|
"@keymanapp/common-types": "*",
|
|
"@keymanapp/models-types": "*",
|
|
"@keymanapp/keyman-version": "*",
|
|
"@keymanapp/web-utils": "*",
|
|
"@types/node": "^11.9.4"
|
|
},
|
|
"type": "module",
|
|
"main": "./build/obj/index.js",
|
|
"types": "./build/obj/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"es6-bundling": "./src/index.ts",
|
|
"default": "./build/obj/index.js"
|
|
},
|
|
"./node-keyboard-loader": {
|
|
"es6-bundling": "./src/keyboards/loaders/node-keyboard-loader.ts",
|
|
"types": "./build/obj/keyboards/loaders/node-keyboard-loader.d.ts",
|
|
"import": "./build/obj/keyboards/loaders/node-keyboard-loader.js"
|
|
},
|
|
"./dom-keyboard-loader": {
|
|
"es6-bundling": "./src/keyboards/loaders/dom-keyboard-loader.ts",
|
|
"types": "./build/obj/keyboards/loaders/dom-keyboard-loader.d.ts",
|
|
"import": "./build/obj/keyboards/loaders/dom-keyboard-loader.js"
|
|
},
|
|
"./lib": {
|
|
"types": "./build/lib/index.d.ts",
|
|
"import": "./build/lib/index.mjs"
|
|
},
|
|
"./lib/node-keyboard-loader": {
|
|
"types": "./build/lib/node-keyboard-loader.d.ts",
|
|
"import": "./build/lib/node-keyboard-loader.mjs"
|
|
},
|
|
"./lib/dom-keyboard-loader": {
|
|
"types": "./build/lib/dom-keyboard-loader.d.ts",
|
|
"import": "./build/lib/dom-keyboard-loader.mjs"
|
|
},
|
|
"./obj/*.js": "./build/obj/*.js"
|
|
}
|
|
}
|