-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.87 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.87 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
{
"name": "daiso",
"version": "1.0.4",
"description": "Daiso MCP Server for mobile access via Cloudflare Workers",
"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/generate-openapi.ts",
"build:openapi": "npx tsx scripts/generate-openapi.ts",
"update:workers-chart": "npx tsx scripts/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",
"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 typecheck && npm test"
},
"keywords": [
"mcp",
"daiso",
"cloudflare-workers",
"serverless"
],
"author": "hmmhmmhm",
"license": "MIT",
"repository": {
"type": "git",
"url": "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": ">=20 <21"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260316.1",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"chart.js": "^4.5.1",
"chartjs-node-canvas": "^5.0.0",
"chartjs-plugin-datalabels": "^2.2.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"tsx": "^4.20.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.57.0",
"vitest": "^4.1.0",
"wrangler": "^4.73.0"
},
"overrides": {
"flatted": "3.4.1",
"undici": "7.24.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"hono": "^4.12.8",
"workers-mcp": "^0.0.13"
}
}