mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Merge pull request #1077 from microsoft/isidorn/diverse-sloth
fix sample:
This commit is contained in:
@ -1,7 +1,5 @@
|
||||
.vscode/**
|
||||
.vscode-test/**
|
||||
out/**
|
||||
node_modules/**
|
||||
src/**
|
||||
.gitignore
|
||||
.yarnrc
|
||||
|
||||
7
chat-sample/package-lock.json
generated
7
chat-sample/package-lock.json
generated
@ -7,12 +7,14 @@
|
||||
"": {
|
||||
"name": "chat-sample",
|
||||
"version": "0.1.0",
|
||||
"dependencies": {
|
||||
"@vscode/prompt-tsx": "^0.2.3-alpha"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.5.9",
|
||||
"@types/vscode": "1.90.0",
|
||||
"@typescript-eslint/eslint-plugin": "^7.14.0",
|
||||
"@typescript-eslint/parser": "^7.14.0",
|
||||
"@vscode/prompt-tsx": "^0.2.3-alpha",
|
||||
"eslint": "^8.26.0",
|
||||
"typescript": "^5.5.2"
|
||||
},
|
||||
@ -388,8 +390,7 @@
|
||||
"node_modules/@vscode/prompt-tsx": {
|
||||
"version": "0.2.3-alpha",
|
||||
"resolved": "https://registry.npmjs.org/@vscode/prompt-tsx/-/prompt-tsx-0.2.3-alpha.tgz",
|
||||
"integrity": "sha512-6u/WX4kjl/spf/jGL+sgI+ELlIFO42GqbiwDWcB7epB55YTQzl543Iwj0+dzu70ofr/kqV48IbGP0EjTuCUzGw==",
|
||||
"dev": true
|
||||
"integrity": "sha512-6u/WX4kjl/spf/jGL+sgI+ELlIFO42GqbiwDWcB7epB55YTQzl543Iwj0+dzu70ofr/kqV48IbGP0EjTuCUzGw=="
|
||||
},
|
||||
"node_modules/acorn": {
|
||||
"version": "8.12.0",
|
||||
|
||||
@ -16,9 +16,6 @@
|
||||
"Chat"
|
||||
],
|
||||
"activationEvents": [],
|
||||
"enabledApiProposals": [
|
||||
"chatVariableResolver"
|
||||
],
|
||||
"contributes": {
|
||||
"chatParticipants": [
|
||||
{
|
||||
@ -53,9 +50,11 @@
|
||||
"lint": "eslint \"src/**/*.ts\"",
|
||||
"watch": "tsc -watch -p ./"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vscode/prompt-tsx": "^0.2.3-alpha"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.5.9",
|
||||
"@vscode/prompt-tsx": "^0.2.3-alpha",
|
||||
"@types/vscode": "1.90.0",
|
||||
"@typescript-eslint/eslint-plugin": "^7.14.0",
|
||||
"@typescript-eslint/parser": "^7.14.0",
|
||||
|
||||
Reference in New Issue
Block a user