create-done-coding 0.11.27-alpha.0 → 0.12.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 +2 -2
- package/es/cli.mjs +1 -1
- package/es/index-2fb632d3.js +4384 -0
- package/es/index.mjs +2 -2
- package/package.json +6 -6
- package/types/index.d.ts +2 -2
- package/es/index-5802775e.js +0 -4005
- package/types/mcp/server-config.d.ts +0 -7
- package/types/mcp/server.d.ts +0 -2
- package/types/mcp-config.d.ts +0 -7
- package/types/mcp-server.d.ts +0 -1
- package/types/mcp.d.ts +0 -2
- package/types/template.json.d.ts +0 -156
package/README.md
CHANGED
|
@@ -217,7 +217,7 @@ node es/cli.mjs --help
|
|
|
217
217
|
|
|
218
218
|
## 许可证
|
|
219
219
|
|
|
220
|
-
MIT © [
|
|
220
|
+
MIT © [done-coding](https://github.com/done-coding)
|
|
221
221
|
|
|
222
222
|
## 相关链接
|
|
223
223
|
|
|
@@ -225,5 +225,5 @@ MIT © [JustSoSu](https://gitee.com/done-coding)
|
|
|
225
225
|
- [Git 操作工具](https://www.npmjs.com/package/@done-coding/cli-git) - 本包依赖的 Git 功能
|
|
226
226
|
- [模板处理工具](https://www.npmjs.com/package/@done-coding/cli-template) - 本包依赖的模板引擎
|
|
227
227
|
- [信息注入工具](https://www.npmjs.com/package/@done-coding/cli-inject) - 本包依赖的信息注入功能
|
|
228
|
-
- [
|
|
228
|
+
- [Github 仓库](https://github.com/done-coding/done-coding-cli)
|
|
229
229
|
- [更新日志](./CHANGELOG.md)
|
package/es/cli.mjs
CHANGED