@the-40-thieves/obsidian-tc-native 1.0.1 → 1.0.2

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 CHANGED
@@ -9,7 +9,7 @@ Handles perf-critical primitives that would be too slow in JavaScript:
9
9
  - BM25 scoring
10
10
  - Tokenization
11
11
  - `sqlite-vec` extension wrapper
12
- - *(V2)* K-means clustering, ACT-R decay scoring
12
+ - ~~K-means clustering, ACT-R decay scoring~~ *(deprecated — reserved for an out-of-scope intelligence layer; `kmeansAssign` / `actrDecayScore` are being removed)*
13
13
 
14
14
  Ships as cross-platform prebuilt binaries inside the npm package. **No Rust toolchain required for end users.**
15
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-40-thieves/obsidian-tc-native",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Native perf module for obsidian-tc — vector ops, BM25, sqlite-vec, V2 clustering hooks",
5
5
  "license": "Apache-2.0",
6
6
  "main": "index.js",
@@ -24,8 +24,8 @@
24
24
  }
25
25
  },
26
26
  "scripts": {
27
- "build": "napi build --platform --release",
28
- "build:debug": "napi build --platform",
27
+ "build": "napi build --platform --release --js false --dts ./target/napi-generated.d.ts",
28
+ "build:debug": "napi build --platform --js false --dts ./target/napi-generated.d.ts",
29
29
  "typecheck": "tsc -p tsconfig.json",
30
30
  "test": "cargo test",
31
31
  "version": "napi version"
@@ -34,7 +34,7 @@
34
34
  "@napi-rs/cli": "^2.18.0"
35
35
  },
36
36
  "engines": {
37
- "node": ">=20"
37
+ "node": ">=22"
38
38
  },
39
39
  "repository": {
40
40
  "type": "git",
@@ -49,9 +49,9 @@
49
49
  "./package.json": "./package.json"
50
50
  },
51
51
  "optionalDependencies": {
52
- "@the-40-thieves/obsidian-tc-native-linux-x64-gnu": "1.0.1",
53
- "@the-40-thieves/obsidian-tc-native-darwin-x64": "1.0.1",
54
- "@the-40-thieves/obsidian-tc-native-darwin-arm64": "1.0.1",
55
- "@the-40-thieves/obsidian-tc-native-win32-x64-msvc": "1.0.1"
52
+ "@the-40-thieves/obsidian-tc-native-linux-x64-gnu": "1.0.2",
53
+ "@the-40-thieves/obsidian-tc-native-darwin-x64": "1.0.2",
54
+ "@the-40-thieves/obsidian-tc-native-darwin-arm64": "1.0.2",
55
+ "@the-40-thieves/obsidian-tc-native-win32-x64-msvc": "1.0.2"
56
56
  }
57
57
  }