@openexchangeapi/sdk
Version:
Minimal JavaScript client for OpenExchangeAPI using native fetch.
45 lines (44 loc) • 949 B
JSON
{
"name": "@openexchangeapi/sdk",
"version": "1.0.9",
"description": "Minimal JavaScript client for OpenExchangeAPI using native fetch.",
"main": "src/oex.js",
"type": "module",
"types": "src/types.d.ts",
"keywords": [
"openexchangeapi",
"forex",
"currency",
"exchange-rates",
"fx-api",
"client-sdk"
],
"author": "OpenExchangeAPI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OpenExchangeAPI/sdk-javascript.git"
},
"bugs": {
"url": "https://github.com/OpenExchangeAPI/sdk-javascript/issues"
},
"homepage": "https://openexchangeapi.com/docs/sdk/javascript",
"engines": {
"node": ">=18.0.0"
},
"files": [
"src"
],
"exports": {
".": {
"import": "./src/oex.js"
}
},
"scripts": {
"dev": "npx http-server ./examples",
"test": "echo \"No tests yet\""
},
"devDependencies": {
"http-server": "^14.1.1"
}
}