librelinkup-api-client
Version:
An unofficial API for Libre Link Up (glucose monitoring system/CGM)
64 lines • 1.88 kB
JSON
{
"name": "librelinkup-api-client",
"module": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "1.0.0",
"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://github.com/mikelgmh/libre-link-unofficial-api#readme",
"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": {
"@types/node": "^24.2.0",
"bun-bagel": "^1.2.0",
"bun-types": "latest",
"rimraf": "latest"
},
"peerDependencies": {
"typescript": "latest"
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}