youtrack-cert-updater/package.json

28 lines
775 B
JSON
Raw Normal View History

2024-03-17 01:40:38 +08:00
{
"name": "youtrack-cert-updater",
"version": "1.0.0",
"description": "Automatically updates YouTrack domain certificate",
"main": "dist/app.cjs",
"repository": "https://git.rainplus.org/rain-plus/youtrack-cert-updater.git",
"author": "LuoRain",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"build": "yarn webpack --mode production",
"dev": "yarn webpack --mode development --watch",
"start": "node dist/app.cjs"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"babel-loader": "^9.1.3",
"dotenv": "^16.4.5",
"node-fetch": "^3.3.2",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
}
}