krx-cli 1.0.2 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "krx-cli",
3
- "version": "1.0.2",
3
+ "version": "1.2.0",
4
4
  "description": "Agent-native CLI for KRX (Korea Exchange) Open API",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,8 +11,7 @@
11
11
  "SKILL.md"
12
12
  ],
13
13
  "scripts": {
14
- "build": "tsup",
15
- "dev": "tsup --watch",
14
+ "build": "node esbuild.config.js",
16
15
  "test": "vitest run",
17
16
  "test:watch": "vitest",
18
17
  "test:coverage": "vitest run --coverage",
@@ -51,12 +50,12 @@
51
50
  "@eslint/js": "^10.0.1",
52
51
  "@release-it/conventional-changelog": "^10.0.5",
53
52
  "@types/node": "^25.4.0",
53
+ "esbuild": "^0.27.3",
54
54
  "eslint": "^10.0.3",
55
55
  "husky": "^9.1.7",
56
56
  "lint-staged": "^16.3.3",
57
57
  "prettier": "^3.8.1",
58
58
  "release-it": "^19.2.4",
59
- "tsup": "^8.5.1",
60
59
  "typescript": "^5.9.3",
61
60
  "typescript-eslint": "^8.57.0",
62
61
  "vitest": "^4.0.18"
@@ -86,6 +85,9 @@
86
85
  "github": {
87
86
  "release": true
88
87
  },
88
+ "hooks": {
89
+ "after:bump": "sed -i '' \"s/ version: \\\".*\\\"/ version: \\\"${version}\\\"/\" SKILL.md && git add SKILL.md"
90
+ },
89
91
  "npm": {
90
92
  "publish": false
91
93
  },