@ruvector/wasm 0.1.16 → 0.1.29
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/package.json +85 -30
- package/README.md +0 -969
- package/pkg/README.md +0 -969
- package/src/indexeddb.js +0 -355
- package/src/worker-pool.js +0 -254
- package/src/worker.js +0 -184
package/package.json
CHANGED
|
@@ -1,46 +1,101 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruvector/wasm",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
"
|
|
3
|
+
"version": "0.1.29",
|
|
4
|
+
"description": "Unified meta-package for RuVector WASM modules - learning, economy, exotic AI, nervous system, and attention",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./index.js",
|
|
7
|
+
"module": "./index.js",
|
|
8
|
+
"types": "./index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./index.js",
|
|
12
|
+
"types": "./index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./learning": {
|
|
15
|
+
"import": "./node_modules/@ruvector/learning-wasm/ruvector_learning_wasm.js",
|
|
16
|
+
"types": "./node_modules/@ruvector/learning-wasm/ruvector_learning_wasm.d.ts"
|
|
17
|
+
},
|
|
18
|
+
"./economy": {
|
|
19
|
+
"import": "./node_modules/@ruvector/economy-wasm/ruvector_economy_wasm.js",
|
|
20
|
+
"types": "./node_modules/@ruvector/economy-wasm/ruvector_economy_wasm.d.ts"
|
|
21
|
+
},
|
|
22
|
+
"./exotic": {
|
|
23
|
+
"import": "./node_modules/@ruvector/exotic-wasm/ruvector_exotic_wasm.js",
|
|
24
|
+
"types": "./node_modules/@ruvector/exotic-wasm/ruvector_exotic_wasm.d.ts"
|
|
25
|
+
},
|
|
26
|
+
"./nervous-system": {
|
|
27
|
+
"import": "./node_modules/@ruvector/nervous-system-wasm/ruvector_nervous_system_wasm.js",
|
|
28
|
+
"types": "./node_modules/@ruvector/nervous-system-wasm/ruvector_nervous_system_wasm.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./attention": {
|
|
31
|
+
"import": "./node_modules/@ruvector/attention-unified-wasm/ruvector_attention_unified_wasm.js",
|
|
32
|
+
"types": "./node_modules/@ruvector/attention-unified-wasm/ruvector_attention_unified_wasm.d.ts"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
7
35
|
"files": [
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"src/indexeddb.js"
|
|
36
|
+
"index.js",
|
|
37
|
+
"index.d.ts",
|
|
38
|
+
"README.md"
|
|
12
39
|
],
|
|
13
40
|
"scripts": {
|
|
14
|
-
"build": "
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
41
|
+
"build": "echo 'Meta-package - no build required'",
|
|
42
|
+
"test": "node --test",
|
|
43
|
+
"typecheck": "tsc --noEmit",
|
|
44
|
+
"prepublishOnly": "npm run typecheck"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@ruvector/learning-wasm": "^0.1.0",
|
|
48
|
+
"@ruvector/economy-wasm": "^0.1.0",
|
|
49
|
+
"@ruvector/exotic-wasm": "^0.1.29",
|
|
50
|
+
"@ruvector/nervous-system-wasm": "^0.1.0",
|
|
51
|
+
"@ruvector/attention-unified-wasm": "^0.1.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"typescript": "^5.3.3"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"typescript": ">=5.0.0"
|
|
58
|
+
},
|
|
59
|
+
"peerDependenciesMeta": {
|
|
60
|
+
"typescript": {
|
|
61
|
+
"optional": true
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"engines": {
|
|
65
|
+
"node": ">=18.0.0"
|
|
26
66
|
},
|
|
27
67
|
"keywords": [
|
|
28
|
-
"
|
|
29
|
-
"database",
|
|
30
|
-
"embeddings",
|
|
68
|
+
"ruvector",
|
|
31
69
|
"wasm",
|
|
70
|
+
"webassembly",
|
|
71
|
+
"machine-learning",
|
|
72
|
+
"neural-network",
|
|
73
|
+
"ai",
|
|
74
|
+
"learning",
|
|
75
|
+
"lora",
|
|
76
|
+
"economy",
|
|
77
|
+
"crdt",
|
|
78
|
+
"distributed",
|
|
79
|
+
"exotic",
|
|
80
|
+
"nervous-system",
|
|
81
|
+
"attention",
|
|
82
|
+
"vector-database",
|
|
83
|
+
"embeddings",
|
|
32
84
|
"browser",
|
|
33
|
-
"
|
|
34
|
-
"simd",
|
|
35
|
-
"web-workers",
|
|
36
|
-
"indexeddb"
|
|
85
|
+
"edge-computing"
|
|
37
86
|
],
|
|
87
|
+
"author": "RuVector Team",
|
|
38
88
|
"license": "MIT",
|
|
39
89
|
"repository": {
|
|
40
90
|
"type": "git",
|
|
41
|
-
"url": "https://github.com/ruvnet/ruvector.git"
|
|
91
|
+
"url": "https://github.com/ruvnet/ruvector.git",
|
|
92
|
+
"directory": "packages/ruvector-wasm"
|
|
42
93
|
},
|
|
43
|
-
"
|
|
44
|
-
"
|
|
94
|
+
"bugs": {
|
|
95
|
+
"url": "https://github.com/ruvnet/ruvector/issues"
|
|
96
|
+
},
|
|
97
|
+
"homepage": "https://github.com/ruvnet/ruvector/tree/main/packages/ruvector-wasm",
|
|
98
|
+
"publishConfig": {
|
|
99
|
+
"access": "public"
|
|
45
100
|
}
|
|
46
101
|
}
|