Files
proxmox/unifi-api/package.json

39 lines
696 B
JSON
Raw Permalink Normal View History

{
"name": "unifi-api",
"version": "1.0.0",
"description": "TypeScript library for Ubiquiti UniFi/UDM Pro Controller REST API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"unifi-cli": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist"
},
"keywords": [
"unifi",
"ubiquiti",
"udm-pro",
"network",
"api"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"dependencies": {
"commander": "^11.1.0"
},
"devDependencies": {
"@types/node": "^20.19.33",
"typescript": "^5.9.3"
}
}