-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.16 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.16 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
{
"name": "mingpan",
"version": "0.1.3",
"description": "MCP service for accurate Bazi and Ziwei chart calculations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mingpan": "./dist/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ChesterRa/mingpan.git"
},
"homepage": "https://github.com/ChesterRa/mingpan#readme",
"bugs": {
"url": "https://github.com/ChesterRa/mingpan/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"bazi",
"ziwei",
"fortune-telling",
"chinese-astrology",
"model-context-protocol"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"iztro": "^2.5.0",
"lunar-javascript": "^1.7.3",
"zod": "^3.23.0",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@types/node": "^20.11.17",
"typescript": "^5.3.3",
"vitest": "^1.6.1"
},
"engines": {
"node": ">=18.0.0"
}
}