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-01 13:03:49 +07:00
|
|
|
"@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:22:16 +07:00
|
|
|
"eslint": "^10.6.0",
|
2026-07-01 13:17:40 +07:00
|
|
|
"husky": "^9.1.7",
|
2026-07-01 12:36:05 +07:00
|
|
|
"prettier": "^3.9.4",
|
2026-07-01 13:22:16 +07:00
|
|
|
"typescript": "^6.0.3",
|
|
|
|
|
"typescript-eslint": "^8.62.1"
|
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-01 13:22:16 +07:00
|
|
|
"lint": "eslint .",
|
2026-07-01 12:45:06 +07:00
|
|
|
"format": "prettier --check .",
|
|
|
|
|
"format:fix": "prettier --write .",
|
2026-07-27 17:49:07 +07:00
|
|
|
"check": "bun run typecheck && bun run format && bun run lint && bun run test",
|
|
|
|
|
"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
|
|
|
}
|