stellavault 0.5.0 → 0.5.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 +5 -0
- package/dist/stellavault.js +744 -594
- package/package.json +66 -70
package/package.json
CHANGED
|
@@ -1,70 +1,66 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "stellavault",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "Drop anything. It compiles itself into knowledge. Claude remembers everything you know. Local-first MCP server, vault files never modified.",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "https://github.com/Evanciel/stellavault"
|
|
8
|
-
},
|
|
9
|
-
"homepage": "https://github.com/Evanciel/stellavault",
|
|
10
|
-
"bugs": "https://github.com/Evanciel/stellavault/issues",
|
|
11
|
-
"keywords": [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
},
|
|
39
|
-
"engines": {
|
|
40
|
-
"node": ">=20.0.0"
|
|
41
|
-
},
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"@anthropic-ai/sdk": "^0.82.0",
|
|
44
|
-
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
45
|
-
"@xenova/transformers": "^2.17.2",
|
|
46
|
-
"better-sqlite3": "^12.8.0",
|
|
47
|
-
"chalk": "^5.6.2",
|
|
48
|
-
"chokidar": "^5.0.0",
|
|
49
|
-
"commander": "^14.0.3",
|
|
50
|
-
"cors": "^2.8.6",
|
|
51
|
-
"express": "^5.2.1",
|
|
52
|
-
"gray-matter": "^4.0.3",
|
|
53
|
-
"mammoth": "^1.12.0",
|
|
54
|
-
"multer": "^2.1.1",
|
|
55
|
-
"officeparser": "^6.0.7",
|
|
56
|
-
"open": "^11.0.0",
|
|
57
|
-
"ora": "^9.3.0",
|
|
58
|
-
"sqlite-vec": "^0.1.7",
|
|
59
|
-
"unpdf": "^1.4.0",
|
|
60
|
-
"xlsx": "^0.18.5"
|
|
61
|
-
},
|
|
62
|
-
"optionalDependencies": {
|
|
63
|
-
"b4a": "^1.8.0",
|
|
64
|
-
"hyperswarm": "^4.17.0"
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
"esbuild": "^0.24.0",
|
|
68
|
-
"playwright": "^1.58.2"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "stellavault",
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"description": "Drop anything. It compiles itself into knowledge. Claude remembers everything you know. Local-first MCP server, vault files never modified.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/Evanciel/stellavault"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/Evanciel/stellavault",
|
|
10
|
+
"bugs": "https://github.com/Evanciel/stellavault/issues",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"obsidian",
|
|
13
|
+
"knowledge-graph",
|
|
14
|
+
"3d-visualization",
|
|
15
|
+
"vector-search",
|
|
16
|
+
"mcp",
|
|
17
|
+
"fsrs",
|
|
18
|
+
"ai",
|
|
19
|
+
"zettelkasten",
|
|
20
|
+
"claude"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"author": "Evan",
|
|
24
|
+
"type": "module",
|
|
25
|
+
"main": "./dist/stellavault.js",
|
|
26
|
+
"bin": {
|
|
27
|
+
"stellavault": "./dist/stellavault.js",
|
|
28
|
+
"sv": "./dist/stellavault.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist/stellavault.js",
|
|
32
|
+
"README.md",
|
|
33
|
+
"LICENSE",
|
|
34
|
+
"SECURITY.md"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"test": "echo \"no tests in published package\" && exit 0"
|
|
38
|
+
},
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=20.0.0"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@anthropic-ai/sdk": "^0.82.0",
|
|
44
|
+
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
45
|
+
"@xenova/transformers": "^2.17.2",
|
|
46
|
+
"better-sqlite3": "^12.8.0",
|
|
47
|
+
"chalk": "^5.6.2",
|
|
48
|
+
"chokidar": "^5.0.0",
|
|
49
|
+
"commander": "^14.0.3",
|
|
50
|
+
"cors": "^2.8.6",
|
|
51
|
+
"express": "^5.2.1",
|
|
52
|
+
"gray-matter": "^4.0.3",
|
|
53
|
+
"mammoth": "^1.12.0",
|
|
54
|
+
"multer": "^2.1.1",
|
|
55
|
+
"officeparser": "^6.0.7",
|
|
56
|
+
"open": "^11.0.0",
|
|
57
|
+
"ora": "^9.3.0",
|
|
58
|
+
"sqlite-vec": "^0.1.7",
|
|
59
|
+
"unpdf": "^1.4.0",
|
|
60
|
+
"xlsx": "^0.18.5"
|
|
61
|
+
},
|
|
62
|
+
"optionalDependencies": {
|
|
63
|
+
"b4a": "^1.8.0",
|
|
64
|
+
"hyperswarm": "^4.17.0"
|
|
65
|
+
}
|
|
66
|
+
}
|