@theglitchking/semantic-pages 0.1.0

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 ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "@theglitchking/semantic-pages",
3
+ "version": "0.1.0",
4
+ "description": "Semantic search + knowledge graph MCP server for any folder of markdown files",
5
+ "type": "module",
6
+ "main": "./dist/core/index.js",
7
+ "types": "./dist/core/index.d.ts",
8
+ "exports": {
9
+ ".": "./dist/core/index.js",
10
+ "./mcp": "./dist/mcp/server.js"
11
+ },
12
+ "bin": {
13
+ "semantic-pages": "dist/cli/index.js"
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsup",
22
+ "dev": "tsup --watch",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "lint": "tsc --noEmit",
26
+ "prepublishOnly": "npm run build"
27
+ },
28
+ "keywords": [
29
+ "mcp",
30
+ "model-context-protocol",
31
+ "semantic-search",
32
+ "knowledge-graph",
33
+ "markdown",
34
+ "obsidian",
35
+ "vector-search",
36
+ "embeddings",
37
+ "wikilinks",
38
+ "claude",
39
+ "llm",
40
+ "ai",
41
+ "notes",
42
+ "vault"
43
+ ],
44
+ "license": "MIT",
45
+ "engines": {
46
+ "node": ">=18.0.0"
47
+ },
48
+ "dependencies": {
49
+ "@huggingface/transformers": "^4.0.1",
50
+ "@modelcontextprotocol/sdk": "^1.29.0",
51
+ "chokidar": "^5.0.0",
52
+ "commander": "^14.0.3",
53
+ "glob": "^13.0.6",
54
+ "graphology": "^0.26.0",
55
+ "graphology-library": "^0.8.0",
56
+ "graphology-shortest-path": "^2.1.0",
57
+ "graphology-traversal": "^0.3.1",
58
+ "gray-matter": "^4.0.3",
59
+ "hnswlib-node": "^3.0.0",
60
+ "minimatch": "^10.2.5",
61
+ "remark-parse": "^11.0.0",
62
+ "remark-wiki-link": "^2.0.1",
63
+ "unified": "^11.0.5"
64
+ },
65
+ "devDependencies": {
66
+ "@theglitchking/hit-em-with-the-docs": "latest",
67
+ "@types/node": "^25.5.2",
68
+ "tsup": "^8.5.1",
69
+ "typescript": "^6.0.2",
70
+ "vitest": "^4.1.2"
71
+ }
72
+ }