UNPKG

cloudflare-dyndns-updater

Version:

A TypeScript Express application that dynamically updates DNS records on Cloudflare with the current public IP address

54 lines (53 loc) 1.36 kB
{ "name": "cloudflare-dyndns-updater", "version": "1.0.0", "description": "A TypeScript Express application that dynamically updates DNS records on Cloudflare with the current public IP address", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "dev": "nodemon --watch src --exec ts-node src/index.ts", "build": "rimraf dist && tsc", "start": "node dist/index.js", "vercel-build": "tsc", "prepublishOnly": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/rdp-datacenter/ip-update.git" }, "keywords": [ "cloudflare", "dns", "dynamic-dns", "ipv4", "ddns", "updater" ], "author": "RDP Datacenter <noc@rdpdatacenter.in>", "license": "MIT", "bugs": { "url": "https://github.com/rdp-datacenter/ip-update/issues" }, "homepage": "https://github.com/rdp-datacenter/ip-update#readme", "dependencies": { "axios": "^1.5.0", "dotenv": "^16.0.3", "express": "^4.18.2" }, "devDependencies": { "@types/express": "^4.17.15", "@types/node": "^20.6.1", "nodemon": "^3.0.1", "rimraf": "^6.0.1", "ts-node": "^10.9.1", "typescript": "^5.2.2" }, "engines": { "node": ">=14.0.0" } }