upend/tools/upend_js/package.json

31 lines
728 B
JSON

{
"name": "upend",
"version": "0.0.1",
"description": "Client library to interact with the UpEnd system.",
"scripts": {
"build": "tsc --build --listFiles --verbose && cp -v node_modules/upend_wasm/*.wasm .",
"test": "ava",
"lint": "eslint ."
},
"author": "Tomáš Mládek <t@mldk.cz>",
"license": "MIT",
"files": [
"*.ts",
"*.js",
"*.wasm"
],
"devDependencies": {
"@types/debug": "^4.1.8",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"ava": "^3.15.0",
"eslint": "^8.7.0",
"typescript": "^4.4.4"
},
"dependencies": {
"debug": "^4.3.4",
"lru-cache": "^7.0.0",
"upend_wasm": "file:../upend_wasm/pkg"
}
}