mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
28 lines
654 B
JSON
28 lines
654 B
JSON
{
|
|
"name": "@keymanapp/tslib",
|
|
"description": "An ES5 + esbuild-compatible wrapper for the 'tslib' library",
|
|
"main": "./build/index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./build/index.d.ts",
|
|
"import": "./build/index.js"
|
|
},
|
|
"./esbuild-tools": {
|
|
"types": "./build/esbuild-tools.d.ts",
|
|
"import": "./build/esbuild-tools.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "gosh ./build.sh build",
|
|
"clean": "gosh ./build.sh clean"
|
|
},
|
|
"dependencies": {
|
|
"tslib": "^2.5.2",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"devDependencies": {
|
|
"@keymanapp/resources-gosh": "*",
|
|
"esbuild": "^0.15.16"
|
|
},
|
|
"type": "module"
|
|
}
|