@rigkit/provider-vscode 0.0.0-canary-20260518T014918-c5bc0c2
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 +7 -0
- package/dist/extension.cjs +31492 -0
- package/package.json +74 -0
- package/src/extension.ts +402 -0
- package/src/input.test.ts +79 -0
- package/src/input.ts +111 -0
- package/src/project.test.ts +20 -0
- package/src/project.ts +29 -0
- package/src/version.ts +1 -0
- package/src/vscode.d.ts +126 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @rigkit/provider-vscode
|
|
2
|
+
|
|
3
|
+
VS Code host integration for Rigkit runtimes.
|
|
4
|
+
|
|
5
|
+
This package uses `@rigkit/runtime-client` to start or connect to the
|
|
6
|
+
project-local runtime, renders runtime operations and workspaces in VS Code tree
|
|
7
|
+
views, and handles run-session host requests with VS Code UI primitives.
|