-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "baibai",
"version": "0.1.0",
"description": "MCP server for Chinese festival (拜拜) data — dates, rituals, offerings, and images",
"type": "module",
"main": "dist/index.js",
"bin": {
"baibai": "dist/index.js"
},
"scripts": {
"build": "tsc && node -e \"const fs=require('fs');const f='dist/index.js';fs.writeFileSync(f,'#!/usr/bin/env node\\n'+fs.readFileSync(f))\"",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src/",
"test": "vitest run --passWithNoTests"
},
"engines": {
"node": ">=22",
"npm": ">=11"
},
"files": [
"dist"
],
"author": "AngusHsu",
"license": "MIT",
"keywords": [
"mcp",
"chinese-festival",
"baibai",
"拜拜",
"worship"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.2",
"eslint": "^10.0.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}