-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.95 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.95 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
{
"name": "@jd/bdsh-mcp-template",
"version": "1.0.0",
"description": "这是本地生活MCP模版项目,用于快速搭建本地生活MCP服务",
"keywords": [
"AI",
"Agent",
"BDSH",
"FE",
"MCP"
],
"homepage": "http://xingyun.jd.com/codingRoot/BDSH_BEST_AI/bdshMCPTemplate/",
"bugs": {
"url": "http://xingyun.jd.com/codingRoot/BDSH_BEST_AI/bdshMCPTemplate/issues/"
},
"license": "MIT",
"author": "BDSH_BEST_AI",
"repository": {
"type": "git",
"url": "git+https://coding.jd.com/BDSH_BEST_AI/bdshMCPTemplate.git"
},
"bin": {
"packageCommand": "./dist/index.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"py:build": "uv run pyinstaller --name start-backend-agent -F --collect-data oxygent src_agent/main.py",
"py:check": "uv run ruff check --fix src_agent && uv run ruff format src_agent && uv run mypy --disable-error-code import-untyped src_agent",
"prepare": "husky",
"postinstall": "uv sync --extra dev",
"prepublishOnly": "pnpm run build",
"build": "unbuild",
"test": "vitest run",
"check": "oxlint --fix --ignore-path=.gitignore --type-aware && oxfmt --write --ignore-path=.gitignore",
"release": "changelogen --clean --release --push"
},
"dependencies": {
"@betterhyq/ask-oxygent": "1.0.1",
"@modelcontextprotocol/sdk": "1.25.1",
"c12": "3.3.3",
"citty": "0.1.6",
"commander": "14.0.2",
"fastmcp": "3.26.7",
"zod": "4.2.1"
},
"devDependencies": {
"@types/node": "24.10.2",
"changelogen": "0.6.2",
"globals": "16.5.0",
"husky": "9.1.7",
"oxfmt": "0.21.0",
"oxlint": "1.36.0",
"oxlint-tsgolint": "0.10.0",
"typescript": "5.9.3",
"unbuild": "3.6.1",
"vite": "7.3.0",
"vitest": "4.0.16"
},
"engines": {
"node": ">=24.0.2",
"pnpm": ">=10.13.1"
},
"packageManager": "pnpm@10.13.1",
"mcpName": "本地生活MCP模版项目"
}