upend/sdks/js/package.json

41 lines
984 B
JSON

{
"name": "@upnd/upend",
"version": "0.5.0",
"description": "Client library to interact with the UpEnd system.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js",
"./wasm": "./dist/wasm/index.js",
"./wasm/*": "./dist/wasm/*.js"
},
"scripts": {
"build": "tsc --build --verbose",
"test": "jest",
"lint": "eslint ."
},
"author": "Tomáš Mládek <t@mldk.cz>",
"license": "AGPL-3.0",
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.7.0",
"eslint-plugin-ava": "^14.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^4.4.4"
},
"dependencies": {
"@upnd/wasm-node": "^0.1.0",
"@upnd/wasm-web": "^0.1.0",
"debug": "^4.3.4",
"lru-cache": "^7.0.0"
}
}