mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
* Add globalState to the standalone vscode extension context replacement. Add a generic key-value store that can be used by different storages, and move this into vscode-context-utils file. Move the stubs/mocks into a separate stubs file, (they have type checking turned off). Keep the implementations in vscode-context and turn on typechecking for this file. * Add type parameter for the values in the JsonKeyValueStore * Optimize imports * Add implementations for the vscode ExtensionContext in the standalone app (#4000) * Formatting * add package-lock.json
13 lines
243 B
JSON
13 lines
243 B
JSON
{
|
|
"name": "Cline standalone",
|
|
"version": "1.0.0",
|
|
"main": "standalone.js",
|
|
"dependencies": {
|
|
"@grpc/grpc-js": "^1.13.3",
|
|
"@grpc/reflection": "^1.0.4",
|
|
"grpc-health-check": "^2.0.2",
|
|
"open": "^10.1.2",
|
|
"vscode-uri": "^3.1.0"
|
|
}
|
|
}
|