Files
omada-api/package.json
2026-03-02 12:14:04 -08:00

34 lines
592 B
JSON

{
"name": "omada-api",
"version": "1.0.0",
"description": "TypeScript library for TP-Link Omada Controller REST API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist"
},
"keywords": [
"omada",
"tp-link",
"router",
"switch",
"api",
"network"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^20.19.33",
"typescript": "^5.9.3"
}
}