@ruvector/wasm 0.1.22 → 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.
Files changed (1) hide show
  1. package/package.json +87 -21
package/package.json CHANGED
@@ -1,35 +1,101 @@
1
1
  {
2
2
  "name": "@ruvector/wasm",
3
- "version": "0.1.22",
4
- "description": "WebAssembly bindings for RuVector vector database",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
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
+ },
35
+ "files": [
36
+ "index.js",
37
+ "index.d.ts",
38
+ "README.md"
39
+ ],
7
40
  "scripts": {
8
- "build": "tsc -b",
9
- "build:wasm": "cd ../../../crates/ruvector-wasm && wasm-pack build --target nodejs --out-dir ../../npm/packages/wasm/wasm-pkg",
10
- "clean": "rm -rf dist *.tsbuildinfo wasm-pkg",
11
- "test": "echo \"Tests not yet implemented\"",
41
+ "build": "echo 'Meta-package - no build required'",
42
+ "test": "node --test",
12
43
  "typecheck": "tsc --noEmit",
13
- "lint": "eslint src --ext .ts"
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"
14
66
  },
15
67
  "keywords": [
16
- "vector",
17
- "database",
68
+ "ruvector",
18
69
  "wasm",
19
70
  "webassembly",
20
- "embeddings"
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",
84
+ "browser",
85
+ "edge-computing"
21
86
  ],
22
- "author": "",
87
+ "author": "RuVector Team",
23
88
  "license": "MIT",
24
- "files": [
25
- "dist",
26
- "wasm-pkg",
27
- "README.md"
28
- ],
89
+ "repository": {
90
+ "type": "git",
91
+ "url": "https://github.com/ruvnet/ruvector.git",
92
+ "directory": "packages/ruvector-wasm"
93
+ },
94
+ "bugs": {
95
+ "url": "https://github.com/ruvnet/ruvector/issues"
96
+ },
97
+ "homepage": "https://github.com/ruvnet/ruvector/tree/main/packages/ruvector-wasm",
29
98
  "publishConfig": {
30
99
  "access": "public"
31
- },
32
- "dependencies": {
33
- "@ruvector/core": "^0.1.0"
34
100
  }
35
101
  }