UNPKG

librelinkup-api-client

Version:

An unofficial API for Libre Link Up (glucose monitoring system/CGM)

83 lines (82 loc) 2.25 kB
{ "name": "librelinkup-api-client", "module": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", "version": "1.0.2", "description": "An unofficial API for Libre Link Up (glucose monitoring system/CGM)", "author": "Mikel Granero <mikelgmh@gmail.com>", "type": "module", "license": "MIT", "keywords": [ "libre", "librelinkup", "glucose", "cgm", "diabetes", "abbott", "freestyle", "typescript", "nodejs" ], "repository": { "type": "git", "url": "git+https://github.com/mikelgmh/libre-link-unofficial-api.git" }, "bugs": { "url": "https://github.com/mikelgmh/libre-link-unofficial-api/issues" }, "homepage": "https://www.npmjs.com/package/librelinkup-api-client", "scripts": { "dev": "bun --watch src/index.ts", "build": "bun run build:node && bun run build:emitDeclarations", "build:node": "bun build ./src/index.ts --outdir dist --target node --splitting --minify --sourcemap=inline", "build:emitDeclarations": "tsc --emitDeclarationOnly --project tsconfig.json --tsBuildInfoFile './dist/.tsbuildinfo'", "clean": "rimraf dist", "test": "bun run test-int && bun run test-unit", "test-unit": "bun test 'spec' --coverage", "test-int": "bun test 'client.test.ts' --coverage --timeout 60000", "test-int:update": "bun test 'client.test.ts' --coverage --update-snapshots --timeout 60000", "sandbox": "bun run ./sandbox/index.ts", "prepublish": "bun run build" }, "devDependencies": { "@semantic-release/github": "^10.0.0", "@types/node": "^24.2.0", "bun-bagel": "^1.2.0", "bun-types": "latest", "rimraf": "latest", "semantic-release": "^23.0.0" }, "peerDependencies": { "typescript": "latest" }, "files": [ "dist/*.js", "dist/*.d.ts", "README.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "publishConfig": { "access": "public" }, "release": { "branches": [ "main" ], "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", [ "@semantic-release/npm", { "npmPublish": true } ], "@semantic-release/github" ] } }