init
Auto Bump and Publish / bump-and-publish (push) Failing after 8m24s
CI / lint-and-test (20) (push) Successful in 1m1s
CI / lint-and-test (22) (push) Successful in 1m3s

This commit is contained in:
Tom You
2026-06-11 15:16:51 +09:00
commit 083505c952
30 changed files with 8530 additions and 0 deletions
+66
View File
@@ -0,0 +1,66 @@
{
"name": "damn-my-slow-skt",
"version": "0.5.26",
"description": "SKT/SK브로드밴드 인터넷 SLA 속도 미달 시 요금 감면을 자동화하는 CLI 도구",
"keywords": [
"skt",
"skbroadband",
"sla",
"internet",
"speed",
"automation",
"cli"
],
"homepage": "https://github.com/kargnas/damn-my-slow-skt",
"bugs": {
"url": "https://github.com/kargnas/damn-my-slow-skt/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kargnas/damn-my-slow-skt.git"
},
"license": "MIT",
"bin": {
"damn-my-slow-skt": "bin/damn-my-slow-skt"
},
"main": "dist/index.js",
"files": [
"bin",
"dist",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"axios": "^1.6.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^12.0.0",
"inquirer": "^8.2.6",
"js-yaml": "^4.1.0",
"playwright": "^1.52.0"
},
"devDependencies": {
"@action-validator/cli": "^0.6.0",
"@types/inquirer": "^8.2.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.0",
"vitest": "^4.1.3"
}
}