hyuil 0.1.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/LICENSE +21 -0
- package/README.md +3 -0
- package/build/index.js +33745 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hyuil",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"bin": {
|
|
6
|
+
"hyuil": "./build/index.js"
|
|
7
|
+
},
|
|
8
|
+
"packageManager": "bun@1.3.5",
|
|
9
|
+
"sideEffects": false,
|
|
10
|
+
"type": "module",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "bun run --hot src/app.ts",
|
|
13
|
+
"build": "bun build src/app.ts --outdir dist --format esm --target bun",
|
|
14
|
+
"build:mcp": "bun build mcp/index.ts --outdir build --format esm --target node && bun run scripts/add-shebang.js",
|
|
15
|
+
"start": "NODE_ENV=production bun dist/app.js",
|
|
16
|
+
"release": "bun run build:mcp && publint && changeset publish",
|
|
17
|
+
"format": "prettier --write .",
|
|
18
|
+
"lint": "eslint .",
|
|
19
|
+
"prepare": "husky"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@hono/mcp": "^0.2.3",
|
|
23
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
24
|
+
"dotenv": "^17.2.3",
|
|
25
|
+
"hono": "^4.11.3",
|
|
26
|
+
"lru-cache": "^11.2.4",
|
|
27
|
+
"pretty-cache-header": "^1.0.0",
|
|
28
|
+
"zod": "^4.2.1"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@changesets/cli": "^2.29.8",
|
|
32
|
+
"@types/bun": "^1.3.5",
|
|
33
|
+
"eslint": "^9.39.2",
|
|
34
|
+
"eslint-config-mado": "^0.11.0",
|
|
35
|
+
"husky": "^9.1.7",
|
|
36
|
+
"lint-staged": "^16.2.7",
|
|
37
|
+
"prettier": "^3.7.4",
|
|
38
|
+
"publint": "^0.3.16",
|
|
39
|
+
"typescript": "^5.9.3"
|
|
40
|
+
},
|
|
41
|
+
"author": {
|
|
42
|
+
"email": "doinki94@gmail.com",
|
|
43
|
+
"name": "doinki",
|
|
44
|
+
"url": "https://github.com/doinki"
|
|
45
|
+
},
|
|
46
|
+
"bugs": "https://github.com/doinki/hyuil/issues",
|
|
47
|
+
"description": "한국의 공휴일을 조회할 수 있는 MCP 서버",
|
|
48
|
+
"files": [
|
|
49
|
+
"build"
|
|
50
|
+
],
|
|
51
|
+
"homepage": "https://github.com/doinki/hyuil",
|
|
52
|
+
"keywords": [
|
|
53
|
+
"hyuil",
|
|
54
|
+
"holiday",
|
|
55
|
+
"mcp"
|
|
56
|
+
],
|
|
57
|
+
"repository": {
|
|
58
|
+
"type": "git",
|
|
59
|
+
"url": "git+https://github.com/doinki/hyuil.git"
|
|
60
|
+
},
|
|
61
|
+
"publishConfig": {
|
|
62
|
+
"access": "public"
|
|
63
|
+
}
|
|
64
|
+
}
|