upend/sdks/js/package.json

33 lines
765 B
JSON
Raw Normal View History

2021-11-11 23:37:42 +01:00
{
"name": "@upnd/upend",
"version": "0.4.1",
2021-11-11 23:37:42 +01:00
"description": "Client library to interact with the UpEnd system.",
"scripts": {
"build": "tsc --build --verbose",
"test": "pnpm build && ava",
2022-01-28 18:58:34 +01:00
"lint": "eslint ."
2021-11-11 23:37:42 +01:00
},
"author": "Tomáš Mládek <t@mldk.cz>",
"license": "AGPL-3.0",
2023-07-25 14:40:43 +02:00
"files": [
"**/*.ts",
"**/*.js",
"**/*.wasm"
2023-07-25 14:40:43 +02:00
],
"devDependencies": {
2023-06-05 12:56:33 +02:00
"@types/debug": "^4.1.8",
2022-01-28 18:58:34 +01:00
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
2021-12-17 11:33:09 +01:00
"ava": "^3.15.0",
2022-01-28 18:58:34 +01:00
"eslint": "^8.7.0",
2023-11-11 11:10:53 +01:00
"eslint-plugin-ava": "^14.0.0",
"typescript": "^4.4.4"
},
2023-05-21 21:37:29 +02:00
"dependencies": {
"@upnd/wasm-node": "^0.1.0",
"@upnd/wasm-web": "^0.1.0",
2023-06-05 12:56:33 +02:00
"debug": "^4.3.4",
"lru-cache": "^7.0.0"
}
2021-11-11 23:37:42 +01:00
}