@vertesia/memory 0.78.0-dev.1 → 0.80.0-dev-20251118
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/lib/types/ContentSource.d.ts +1 -1
- package/package.json +43 -43
|
@@ -26,7 +26,7 @@ export declare class FileSource extends AbstractContentSource {
|
|
|
26
26
|
get name(): string;
|
|
27
27
|
get extname(): string;
|
|
28
28
|
get nameWithoutExt(): string;
|
|
29
|
-
getContent(): Promise<
|
|
29
|
+
getContent(): Promise<NonSharedBuffer>;
|
|
30
30
|
getStream(): Promise<NodeJS.ReadableStream>;
|
|
31
31
|
static resolve(location: string): FileSource | FileSource[];
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
"types": "./lib/types/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"lib",
|
|
9
|
-
"src"
|
|
10
|
-
],
|
|
11
|
-
"license": "Apache-2.0",
|
|
12
|
-
"devDependencies": {
|
|
13
|
-
"@types/micromatch": "^4.0.9",
|
|
14
|
-
"@types/node": "^22.5.1",
|
|
15
|
-
"@types/tar-stream": "^3.1.3",
|
|
16
|
-
"ts-dual-module": "^0.6.3",
|
|
17
|
-
"vitest": "^3.1.1"
|
|
18
|
-
},
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"glob": "^11.0.0",
|
|
21
|
-
"micromatch": "^4.0.8",
|
|
22
|
-
"tar-stream": "^3.1.7",
|
|
23
|
-
"@vertesia/converters": "0.78.0-dev.1",
|
|
24
|
-
"@vertesia/json": "0.78.0-dev.1"
|
|
25
|
-
},
|
|
26
|
-
"ts_dual_module": {
|
|
27
|
-
"outDir": "lib"
|
|
28
|
-
},
|
|
29
|
-
"exports": {
|
|
2
|
+
"name": "@vertesia/memory",
|
|
3
|
+
"description": "Manipulate memory images for LLMs",
|
|
4
|
+
"version": "0.80.0-dev-20251118",
|
|
5
|
+
"type": "module",
|
|
30
6
|
"types": "./lib/types/index.d.ts",
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
7
|
+
"files": [
|
|
8
|
+
"lib",
|
|
9
|
+
"src"
|
|
10
|
+
],
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"eslint": "eslint './src/**/*.{jsx,js,tsx,ts}'",
|
|
14
|
+
"build": "pnpm exec tsmod build",
|
|
15
|
+
"test": "vitest run",
|
|
16
|
+
"clean": "rimraf ./node_modules ./lib ./tsconfig.tsbuildinfo"
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@types/micromatch": "^4.0.9",
|
|
20
|
+
"@types/node": "^22.5.1",
|
|
21
|
+
"@types/tar-stream": "^3.1.3",
|
|
22
|
+
"ts-dual-module": "^0.6.3",
|
|
23
|
+
"vitest": "^3.1.1"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@vertesia/converters": "workspace:*",
|
|
27
|
+
"@vertesia/json": "workspace:*",
|
|
28
|
+
"glob": "^11.0.0",
|
|
29
|
+
"micromatch": "^4.0.8",
|
|
30
|
+
"tar-stream": "^3.1.7"
|
|
31
|
+
},
|
|
32
|
+
"ts_dual_module": {
|
|
33
|
+
"outDir": "lib"
|
|
34
|
+
},
|
|
35
|
+
"exports": {
|
|
36
|
+
"types": "./lib/types/index.d.ts",
|
|
37
|
+
"import": "./lib/esm/index.js",
|
|
38
|
+
"require": "./lib/cjs/index.js"
|
|
39
|
+
},
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "https://github.com/vertesia/composableai.git",
|
|
43
|
+
"directory": "packages/memory"
|
|
44
|
+
}
|
|
45
|
+
}
|