upend/sdks/js/package.json

41 lines
984 B
JSON
Raw Normal View History

2021-11-11 23:37:42 +01:00
{
"name": "@upnd/upend",
"version": "0.5.1",
2021-11-11 23:37:42 +01:00
"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"
},
2021-11-11 23:37:42 +01:00
"scripts": {
"build": "tsc --build --verbose",
2024-02-17 15:21:14 +01:00
"test": "jest",
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",
"devDependencies": {
2023-06-05 12:56:33 +02:00
"@types/debug": "^4.1.8",
2024-02-17 15:21:14 +01:00
"@types/jest": "^29.5.12",
2022-01-28 18:58:34 +01:00
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.7.0",
2023-11-11 11:10:53 +01:00
"eslint-plugin-ava": "^14.0.0",
2024-02-17 15:21:14 +01:00
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"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
}