-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "daiso",
"version": "1.0.10",
"description": "Korean retail and cinema MCP server, CLI, and Codex Skill for Daiso, convenience stores, marts, Olive Young, and theaters",
"main": "dist/index.js",
"bin": {
"daiso": "dist/bin.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"openapi.json",
"openapi.yaml"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"hooks:install": "git config core.hooksPath .githooks && chmod +x .githooks/pre-push",
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"build": "tsc && npx tsx scripts/ops/generate-openapi.ts",
"build:openapi": "npx tsx scripts/ops/generate-openapi.ts",
"cli:smoke": "npm run build && npx tsx scripts/ops/cli-smoke.ts",
"mcp:smoke": "npx tsx scripts/ops/mcp-smoke.ts",
"update:workers-chart": "npx tsx scripts/ops/update-workers-invocations-chart.ts",
"prepack": "npm run build",
"prepublishOnly": "npm run check && npm run build",
"release:dry-run": "npm pack --dry-run",
"publish:public": "npm publish --access public",
"typecheck": "tsc --noEmit",
"check:source-lines": "npx tsx scripts/quality/check-source-line-limit.ts",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" \"scripts/**/*.ts\" \"vitest.config.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" \"scripts/**/*.ts\" \"vitest.config.ts\" --fix",
"format": "prettier .github/**/*.md .github/**/*.yml README.md SECURITY.md AGENTS.md CONTRIBUTING.md package.json tsconfig.json .prettierrc.json .mcp.json eslint.config.ts --write",
"format:check": "prettier .github/**/*.md .github/**/*.yml README.md SECURITY.md AGENTS.md CONTRIBUTING.md package.json tsconfig.json .prettierrc.json .mcp.json eslint.config.ts --check",
"cf-typegen": "wrangler types",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check": "npm run format:check && npm run lint && npm run lint:biome && npm run typecheck && npm run check:source-lines && npm test",
"lint:biome": "biome lint"
},
"keywords": [
"mcp",
"mcp-server",
"daiso",
"korea",
"korean-retail",
"retail",
"inventory",
"cli",
"codex-skill",
"clawhub",
"oliveyoung",
"gs25",
"cu",
"seveneleven",
"emart24",
"lottemart",
"cgv",
"megabox",
"lottecinema",
"cloudflare-workers",
"serverless"
],
"author": "hmmhmmhm",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hmmhmmhm/daiso-mcp.git"
},
"homepage": "https://github.com/hmmhmmhm/daiso-mcp#readme",
"bugs": {
"url": "https://github.com/hmmhmmhm/daiso-mcp/issues"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@biomejs/biome": "^2.5.5",
"@cloudflare/workers-types": "^5.20260724.1",
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.0",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"jiti": "^2.7.0",
"playwright": "^1.62.0",
"prettier": "^3.9.6",
"sharp": "^0.35.3",
"tsx": "^4.23.1",
"typescript": "6.0.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.7",
"wrangler": "^4.114.0"
},
"overrides": {
"@modelcontextprotocol/sdk": {
"@hono/node-server": "2.0.11"
},
"miniflare": {
"sharp": "0.35.3"
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"hono": "^4.12.32",
"proj4": "^2.20.9",
"workers-mcp": "^0.0.13"
}
}