Files
Cloudflare-DDNS-Updater/package.json
T

37 lines
1.0 KiB
JSON
Raw Normal View History

2022-03-06 16:37:43 +07:00
{
2026-07-01 12:32:37 +07:00
"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 <yuzu@kirameki.cafe>",
"license": "GPL-3.0",
"dependencies": {
"axios": "^1.18.1",
"dotenv": "^17.4.2",
"validator": "^13.15.35",
"winston": "3.19.0"
},
"devDependencies": {
2026-07-27 18:13:14 +07:00
"@biomejs/biome": "^2.5.5",
"@types/bun": "^1.3.14",
2026-07-01 12:32:37 +07:00
"@types/node": "^26.0.1",
"@types/validator": "^13.15.10",
2026-07-01 13:17:40 +07:00
"husky": "^9.1.7",
2026-07-27 18:13:14 +07:00
"typescript": "^7.0.2"
2026-07-01 12:32:37 +07:00
},
"scripts": {
2026-07-01 13:17:40 +07:00
"prepare": "husky",
2026-07-01 12:32:37 +07:00
"typecheck": "tsc --noEmit",
2026-07-27 18:13:14 +07:00
"lint": "biome lint .",
"format": "biome format .",
"format:fix": "biome format --write .",
"check": "bun run typecheck && biome check . && bun run test",
2026-07-27 17:49:07 +07:00
"test": "bun test --isolate",
2026-07-01 12:32:37 +07:00
"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"
}
2022-03-06 16:37:43 +07:00
}