dc-cli-mcp 0.0.1-alpha.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/README.md +11 -0
- package/es/index.mjs +15017 -0
- package/package.json +66 -0
- package/types/index.d.ts +1 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dc-cli-mcp",
|
|
3
|
+
"version": "0.0.1-alpha.0",
|
|
4
|
+
"description": "调用done-coding命令行的mcp服务",
|
|
5
|
+
"private": false,
|
|
6
|
+
"module": "es/index.mjs",
|
|
7
|
+
"types": "types/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"bin": {
|
|
10
|
+
"dc-cli-mcp": "./es/index.mjs"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./es/index.mjs",
|
|
15
|
+
"types": "./types/index.d.ts"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"es",
|
|
20
|
+
"lib",
|
|
21
|
+
"types"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"clean": "rimraf es lib dist types coverage",
|
|
25
|
+
"dev": "vite build -w",
|
|
26
|
+
"predev": "pnpm run clean && dc-inject",
|
|
27
|
+
"build": "vite build",
|
|
28
|
+
"prebuild": "pnpm run clean && dc-inject",
|
|
29
|
+
"prepack": "pnpm build",
|
|
30
|
+
"test": "vitest",
|
|
31
|
+
"coverage": "vitest run --coverage"
|
|
32
|
+
},
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "https://gitee.com/done-coding/done-coding-cli.git",
|
|
36
|
+
"directory": "packages/mcp"
|
|
37
|
+
},
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public",
|
|
40
|
+
"registry": "https://registry.npmjs.org/"
|
|
41
|
+
},
|
|
42
|
+
"author": "JustSoSu",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"sideEffects": false,
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@done-coding/cli-inject": "0.5.21-alpha.0",
|
|
47
|
+
"@types/node": "^18.0.0",
|
|
48
|
+
"@vitest/coverage-istanbul": "^1.1.1",
|
|
49
|
+
"rimraf": "^6.0.1",
|
|
50
|
+
"typescript": "^5.8.3",
|
|
51
|
+
"vite": "^5.0.10",
|
|
52
|
+
"vite-plugin-dts": "^3.7.0",
|
|
53
|
+
"vitest": "^1.1.1"
|
|
54
|
+
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=18.0.0"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@done-coding/cli-component": "0.4.10-alpha.0",
|
|
60
|
+
"@done-coding/cli-utils": "0.8.2-alpha.0",
|
|
61
|
+
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
62
|
+
"create-done-coding": "0.11.23-alpha.0",
|
|
63
|
+
"zod": "^4.3.5"
|
|
64
|
+
},
|
|
65
|
+
"gitHead": "b09dd794f69ba2dafe22a3519d712d059c2eb376"
|
|
66
|
+
}
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { }
|