@the-40-thieves/obsidian-tc-native-darwin-x64 0.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 +2 -6
- package/obsidian-tc-native.darwin-x64.node +0 -0
- package/package.json +19 -15
package/README.md
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
#
|
|
1
|
+
# `@the-40-thieves/obsidian-tc-native-darwin-x64`
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
See the [main repository](https://github.com/suavecito585/obsidian-tc).
|
|
6
|
-
|
|
7
|
-
Licensed under Apache 2.0.
|
|
3
|
+
This is the **x86_64-apple-darwin** binary for `@the-40-thieves/obsidian-tc-native`
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,20 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@the-40-thieves/obsidian-tc-native-darwin-x64",
|
|
3
|
-
"version": "
|
|
4
|
-
"
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"os": [
|
|
5
|
+
"darwin"
|
|
6
|
+
],
|
|
7
|
+
"cpu": [
|
|
8
|
+
"x64"
|
|
9
|
+
],
|
|
10
|
+
"main": "obsidian-tc-native.darwin-x64.node",
|
|
11
|
+
"files": [
|
|
12
|
+
"obsidian-tc-native.darwin-x64.node"
|
|
13
|
+
],
|
|
14
|
+
"description": "Native perf module for obsidian-tc — vector ops, BM25, sqlite-vec, V2 clustering hooks",
|
|
5
15
|
"license": "Apache-2.0",
|
|
6
|
-
"
|
|
7
|
-
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=22"
|
|
18
|
+
},
|
|
8
19
|
"repository": {
|
|
9
20
|
"type": "git",
|
|
10
|
-
"url": "
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
},
|
|
15
|
-
"keywords": ["obsidian", "mcp", "model-context-protocol", "ai", "knowledge-management", "second-brain"],
|
|
16
|
-
"publishConfig": { "access": "public" },
|
|
17
|
-
"os": ["darwin"],
|
|
18
|
-
"cpu": ["x64"],
|
|
19
|
-
"private": false
|
|
20
|
-
}
|
|
21
|
+
"url": "https://github.com/The-40-Thieves/obsidian-tc.git",
|
|
22
|
+
"directory": "packages/native"
|
|
23
|
+
}
|
|
24
|
+
}
|