agent-web-os 0.1.2 → 0.1.4
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 +80 -0
- package/README.zh-CN.md +80 -0
- package/dist/index.cjs +707 -512
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +612 -419
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -168,7 +168,11 @@ declare class AlmostNodeSession {
|
|
|
168
168
|
rewriteBareImports(code: string, root: string, virtualPrefix?: string): string;
|
|
169
169
|
private serveExistingVirtualStaticFile;
|
|
170
170
|
private stopViteServer;
|
|
171
|
+
private resolveBinFromPackageJson;
|
|
171
172
|
private resolveNpmBinPath;
|
|
173
|
+
private resolveGlobalBinPath;
|
|
174
|
+
private extractBinNames;
|
|
175
|
+
private registerGlobalBinCommands;
|
|
172
176
|
private resolveAndRegisterBinCommands;
|
|
173
177
|
private trackOperation;
|
|
174
178
|
private flushPendingOperations;
|
package/dist/index.d.ts
CHANGED
|
@@ -168,7 +168,11 @@ declare class AlmostNodeSession {
|
|
|
168
168
|
rewriteBareImports(code: string, root: string, virtualPrefix?: string): string;
|
|
169
169
|
private serveExistingVirtualStaticFile;
|
|
170
170
|
private stopViteServer;
|
|
171
|
+
private resolveBinFromPackageJson;
|
|
171
172
|
private resolveNpmBinPath;
|
|
173
|
+
private resolveGlobalBinPath;
|
|
174
|
+
private extractBinNames;
|
|
175
|
+
private registerGlobalBinCommands;
|
|
172
176
|
private resolveAndRegisterBinCommands;
|
|
173
177
|
private trackOperation;
|
|
174
178
|
private flushPendingOperations;
|