Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ This product includes the following bundled third-party software:
- @inquirer/prompts v8.5.0 [MIT] (used by: @nvidia-elements/cli)
Copyright: Simon Boudrias <[email protected]>

- @modelcontextprotocol/ext-apps v1.7.3 [MIT] (used by: @nvidia-elements/cli)
Copyright: Olivier Chafik

- @modelcontextprotocol/sdk v1.29.0 [MIT] (used by: @nvidia-elements/cli)
Copyright: Anthropic, PBC (https://anthropic.com)

Expand Down Expand Up @@ -302,6 +305,7 @@ The following bundled components are provided under the MIT license:
@html-eslint/eslint-plugin v0.61.0 - Copyright yeonjuan (https://github.com/yeonjuan)
@html-eslint/parser v0.61.0 - Copyright yeonjuan (https://github.com/yeonjuan)
@inquirer/prompts v8.5.0 - Copyright Simon Boudrias <[email protected]>
@modelcontextprotocol/ext-apps v1.7.3 - Copyright Olivier Chafik
@modelcontextprotocol/sdk v1.29.0 - Copyright Anthropic, PBC (https://anthropic.com)
adm-zip v0.5.17 - Copyright Nasca Iacob <[email protected]> (https://github.com/cthackers)
archiver v8.0.0 - Copyright Chris Talkington (http://christalkington.com/)
Expand Down
2 changes: 2 additions & 0 deletions knip.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ export default {
'@internals/patterns',
'@internals/testing',
'@lit-labs/ssr-client',
'@modelcontextprotocol/ext-apps',
'@nvidia-elements/code',
'@nvidia-elements/forms',
'@nvidia-elements/lint',
'@nvidia-elements/markdown',
Expand Down
51 changes: 24 additions & 27 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ catalog:
'@lit-labs/ssr-react': 0.3.4
'@lit-labs/virtualizer': 2.1.1
'@lit/reactive-element': 2.1.2
'@modelcontextprotocol/ext-apps': 1.7.3
'@modelcontextprotocol/sdk': 1.29.0
'@types/node': 25.6.2
'@types/react': 19.2.14
'@types/react-dom': 19.2.3
Expand Down
4 changes: 4 additions & 0 deletions projects/cli/NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ This project includes the following bundled third-party software:
- @inquirer/prompts v8.5.0 [MIT]
Copyright: Simon Boudrias <[email protected]>

- @modelcontextprotocol/ext-apps v1.7.3 [MIT]
Copyright: Olivier Chafik

- @modelcontextprotocol/sdk v1.29.0 [MIT]
Copyright: Anthropic, PBC (https://anthropic.com)

Expand Down Expand Up @@ -45,6 +48,7 @@ MIT
The following bundled components are provided under the MIT license:

@inquirer/prompts v8.5.0 - Copyright Simon Boudrias <[email protected]>
@modelcontextprotocol/ext-apps v1.7.3 - Copyright Olivier Chafik
@modelcontextprotocol/sdk v1.29.0 - Copyright Anthropic, PBC (https://anthropic.com)
adm-zip v0.5.17 - Copyright Nasca Iacob <[email protected]> (https://github.com/cthackers)
archiver v8.0.0 - Copyright Chris Talkington (http://christalkington.com/)
Expand Down
15 changes: 13 additions & 2 deletions projects/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@
"package.json",
"dist/**/manifest.json",
"dist/**/*.d.ts",
"dist/**/*.html",
"dist/**/*.js"
],
"scripts": {
"dev": "pnpm run nve:install && npx @modelcontextprotocol/inspector@0.21.2 node ./dist/index.js mcp",
"dev": "pnpm run nve:install && npx @modelcontextprotocol/inspector@0.22.0 node ./dist/index.js mcp",
"ci": "wireit",
"build": "wireit",
"lint": "wireit",
Expand All @@ -48,7 +49,8 @@
},
"dependencies": {
"@inquirer/prompts": "8.5.0",
"@modelcontextprotocol/sdk": "1.29.0",
"@modelcontextprotocol/sdk": "catalog:",
"@modelcontextprotocol/ext-apps": "catalog:",
"@nvidia-elements/code": "workspace:*",
"@nvidia-elements/lint": "workspace:^",
"adm-zip": "0.5.17",
Expand All @@ -72,6 +74,7 @@
"eslint": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vite-plugin-singlefile": "2.3.0",
"vitest": "catalog:"
},
"wireit": {
Expand Down Expand Up @@ -135,8 +138,14 @@
"output": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.html",
"dist/manifest.json"
],
"env": {
"CI": {
"external": true
}
},
"dependencies": [
"../internals/vite:ci",
"../lint:build",
Expand Down Expand Up @@ -191,6 +200,7 @@
"command": "vitest run",
"files": [
"dist/**/*.js",
"dist/**/*.html",
"src/**/*.test.ts",
"tsconfig.json",
"vitest.config.ts"
Expand All @@ -213,6 +223,7 @@
"command": "vitest run --coverage",
"files": [
"dist/**/*.js",
"dist/**/*.html",
"src/**/*.test.ts",
"tsconfig.json",
"vitest.config.ts"
Expand Down
2 changes: 1 addition & 1 deletion projects/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ yargsInstance.command(
'Start the MCP server',
() => {},
async () => {
const { startMcpServer } = await import('./mcp/mcp.js');
const { startMcpServer } = await import('./mcp/index.js');
await startMcpServer();
}
);
Expand Down
Loading