Files
Cloudflare-DDNS-Updater/package.json

28 lines
893 B
JSON
Raw Permalink Normal View History

2022-03-06 16:37:43 +07:00
{
"devDependencies": {
"@types/node": "^17.0.21",
"@types/validator": "^13.7.1",
2022-03-06 20:06:58 +07:00
"copyfiles": "^2.4.1",
2022-03-06 16:37:43 +07:00
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
},
"scripts": {
"tsc": "tsc",
"development": "ts-node-dev ./src/index.ts --respawn --transpileOnly",
2022-03-06 20:20:20 +07:00
"build": "tsc -b && copyfiles -u 1 configs_example/**/*.* dist/configs_example/",
2022-07-15 13:27:35 +07:00
"docker-build": "docker build . -t ghcr.io/yuzuzensai/cloudflare-ddns-updater:latest"
2022-03-06 16:37:43 +07:00
},
"name": "cloudflare-ddns-updater",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/YuzuZensai/Cloudflare-DDNS-Updater.git",
2022-10-31 22:21:26 +07:00
"author": "Yuzu <yuzu@kirameki.cafe>",
2022-10-31 22:21:53 +07:00
"license": "GPL-3.0",
2022-03-06 16:37:43 +07:00
"dependencies": {
"axios": "^0.26.0",
"dotenv": "^16.0.0",
"validator": "^13.7.0",
"winston": "3.3.3"
}
}