Files
Cloudflare-DDNS-Updater/package.json

27 lines
849 B
JSON
Raw Normal View History

2022-03-06 16:37:43 +07:00
{
"devDependencies": {
"@types/node": "^17.0.21",
"@types/validator": "^13.7.1",
"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:01:19 +07:00
"build": "tsc -b && copyfiles -u 1 configs_example/**/*.* build/configs_example/",
"docker-build": "docker build . -t 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",
"author": "YuzuZensai <contact@kirameki.pink>",
"license": "MIT",
"dependencies": {
"axios": "^0.26.0",
"dotenv": "^16.0.0",
"validator": "^13.7.0",
"winston": "3.3.3"
}
}