Files
Cloudflare-DDNS-Updater/package.json
T
dependabot[bot]GitHubdependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c2bb65634e build(deps-dev): bump typescript from 6.0.3 to 7.0.2 (#3)
Bumps [typescript](https://github.com/microsoft/TypeScript) from 6.0.3 to 7.0.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/commits)

---
updated-dependencies:
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-07-27 17:56:10 +07:00

39 lines
1.1 KiB
JSON

{
"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": {
"@types/bun": "^1.3.14",
"@types/node": "^26.0.1",
"@types/validator": "^13.15.10",
"eslint": "^10.6.0",
"husky": "^9.1.7",
"prettier": "^3.9.4",
"typescript": "^7.0.2",
"typescript-eslint": "^8.62.1"
},
"scripts": {
"prepare": "husky",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"check": "bun run typecheck && bun run format && bun run lint && 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"
}
}