Files
OwlBoard-TS/package.json
Fred Boniface fc74e933d6
All checks were successful
Publish Package / build-and-publish (push) Successful in 6s
Add StationDataModule, implementing getNearestStations & a Geohash generator method
2026-03-30 21:53:01 +01:00

44 lines
1.0 KiB
JSON

{
"name": "@owlboard/owlboard-ts",
"version": "3.0.0",
"description": "TypeScript API Library to interact with the OwlBoard API (> v3.0.0)",
"main": "./dist/index.js",
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"test-pis": "NODE_TLS_REJECT_UNAUTHORIZED=0 tsx tests/manual/pis.ts"
},
"repository": {
"type": "git",
"url": "ssh://svc_gitea@git.fjla.uk:2222/OwlBoard/OwlBoard-TS.git"
},
"keywords": [
"owlboard"
],
"author": "Frederick Boniface",
"license": "GPL-3.0",
"dependencies": {
"@owlboard/api-schema-types": "^3.0.2-alpha3",
"latlon-geohash": "^2.0.0"
},
"devDependencies": {
"@types/latlon-geohash": "^2.0.4",
"@types/node": "^25.3.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}