@swimmable/sdk
Version:
Official JavaScript/TypeScript SDK for the Swimmable API - Real-time swimming conditions and water quality data
67 lines • 1.67 kB
JSON
{
"name": "@swimmable/sdk",
"version": "1.0.0",
"type": "module",
"description": "Official JavaScript/TypeScript SDK for the Swimmable API - Real-time swimming conditions and water quality data",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.js",
"lint:fix": "eslint src --ext .ts,.js --fix",
"prepublishOnly": "npm run build"
},
"keywords": [
"swimmable",
"swimming",
"conditions",
"water",
"quality",
"beach",
"api",
"sdk",
"weather",
"safety"
],
"author": "Swimmable <developers@swimmable.app>",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/swimmable/javascript-sdk"
},
"homepage": "https://swimmable.app",
"bugs": {
"url": "https://github.com/swimmable/javascript-sdk/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"rollup": "^3.0.0",
"ts-jest": "^29.0.0",
"tslib": "^2.6.0",
"typescript": "^5.0.0"
},
"dependencies": {
"cross-fetch": "^4.0.0"
},
"engines": {
"node": ">=14"
}
}