diff options
| author | Shreya Keshive <[email protected]> | 2025-08-03 16:19:34 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-03 20:19:34 +0000 |
| commit | 2cdaf912ba43a79e68baa74db6086b7f41bc3b82 (patch) | |
| tree | 993d8014d47b7cb5cc0ccb06d968554cc0d1536c /packages/vscode-ide-companion/package.json | |
| parent | 072d8ba2899f2601dad6d4b0333fdcb80555a7dd (diff) | |
Generate NOTICES.TXT and surface via command (#5310)
Diffstat (limited to 'packages/vscode-ide-companion/package.json')
| -rw-r--r-- | packages/vscode-ide-companion/package.json | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/vscode-ide-companion/package.json b/packages/vscode-ide-companion/package.json index c4ff2b68..254d8ac2 100644 --- a/packages/vscode-ide-companion/package.json +++ b/packages/vscode-ide-companion/package.json @@ -35,18 +35,24 @@ { "command": "gemini-cli.runGeminiCLI", "title": "Gemini CLI: Run" + }, + { + "command": "gemini-cli.showNotices", + "title": "Gemini CLI: View Third-Party Notices" } ] }, - "main": "./dist/extension.js", + "main": "./dist/extension.cjs", + "type": "module", "scripts": { - "vscode:prepublish": "npm run check-types && npm run lint && node esbuild.js --production", + "vscode:prepublish": "npm run generate:notices && npm run check-types && npm run lint && node esbuild.js --production", "build": "npm run compile", "compile": "npm run check-types && npm run lint && node esbuild.js", "watch": "npm-run-all -p watch:*", "watch:esbuild": "node esbuild.js --watch", "watch:tsc": "tsc --noEmit --watch --project tsconfig.json", "package": "vsce package --no-dependencies", + "generate:notices": "node ./scripts/generate-notices.js", "check-types": "tsc --noEmit", "lint": "eslint src", "test": "vitest run", |
