Add initial PIS route

This commit is contained in:
2026-02-21 00:04:25 +00:00
parent 35bfa52531
commit 4059082416
7 changed files with 111 additions and 5 deletions

View File

@@ -2,7 +2,16 @@
"name": "owlboard-ts",
"version": "3.0.0",
"description": "TypeScript API Library to interact with the OwlBoard API (> v3.0.0)",
"main": "index.js",
"main": "./dist/index.js",
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},