{ "name": "cloudflare-ddns-updater", "version": "1.0.0", "packageManager": "bun@1.3.14", "main": "index.js", "repository": "https://github.com/YuzuZensai/Cloudflare-DDNS-Updater.git", "author": "Yuzu ", "license": "GPL-3.0", "dependencies": { "axios": "^1.18.1", "dotenv": "^17.4.2", "validator": "^13.15.35", "winston": "3.19.0" }, "devDependencies": { "@biomejs/biome": "^2.5.5", "@types/bun": "^1.3.14", "@types/node": "^26.0.1", "@types/validator": "^13.15.10", "husky": "^9.1.7", "typescript": "^7.0.2" }, "scripts": { "prepare": "husky", "typecheck": "tsc --noEmit", "lint": "biome lint .", "format": "biome format .", "format:fix": "biome format --write .", "check": "bun run typecheck && biome check . && bun run test", "test": "bun test --isolate", "dev": "bun --watch src/index.ts", "start": "bun src/index.ts", "build": "bun run typecheck", "docker-build": "docker build . -t ghcr.io/yuzuzensai/cloudflare-ddns-updater:latest" } }