@sdata/web-vue-mcp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@sdata/web-vue-mcp",
3
+ "version": "0.1.0",
4
+ "description": "Model Context Protocol (MCP) server for the SD Design Vue component library",
5
+ "keywords": [
6
+ "ai",
7
+ "components",
8
+ "llm",
9
+ "mcp",
10
+ "model-context-protocol",
11
+ "sd-design",
12
+ "vue"
13
+ ],
14
+ "homepage": "https://sd-design.js.org",
15
+ "bugs": {
16
+ "url": "https://github.com/liunnn1994/sd-design/issues"
17
+ },
18
+ "license": "AGPL-3.0-only",
19
+ "author": "SData FE Team",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/liunnn1994/sd-design.git",
23
+ "directory": "packages/sd-mcp"
24
+ },
25
+ "bin": {
26
+ "sd-design-mcp": "./dist/index.js"
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "README.md",
31
+ "LICENSE"
32
+ ],
33
+ "type": "module",
34
+ "main": "./dist/index.js",
35
+ "module": "./dist/index.js",
36
+ "types": "./dist/index.d.ts",
37
+ "exports": {
38
+ ".": {
39
+ "types": "./dist/index.d.ts",
40
+ "import": "./dist/index.js",
41
+ "default": "./dist/index.js"
42
+ }
43
+ },
44
+ "publishConfig": {
45
+ "access": "public"
46
+ },
47
+ "scripts": {
48
+ "gen": "node ./scripts/gen-component-data.mjs",
49
+ "build": "pnpm run gen && tsdown",
50
+ "typecheck": "pnpm run gen && tsc --noEmit",
51
+ "dev:link": "pnpm link --global && npm link"
52
+ },
53
+ "dependencies": {
54
+ "@modelcontextprotocol/sdk": "^1.29.0"
55
+ },
56
+ "devDependencies": {
57
+ "@babel/types": "^7.29.7",
58
+ "@semantic-release/commit-analyzer": "^13.0.1",
59
+ "@semantic-release/exec": "^7.1.0",
60
+ "@semantic-release/git": "^10.0.1",
61
+ "@semantic-release/github": "^12.0.8",
62
+ "@semantic-release/release-notes-generator": "^14.1.1",
63
+ "@types/node": "~24.13.2",
64
+ "fast-glob": "^3.3.3",
65
+ "semantic-release": "^25.0.5",
66
+ "tsdown": "^0.22.0",
67
+ "typescript": "catalog:",
68
+ "vue-docgen-api": "4.79.2"
69
+ },
70
+ "engines": {
71
+ "node": ">=20"
72
+ }
73
+ }