-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.41 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@yogsoth-ai/knowledge-structuring",
"version": "0.3.0",
"description": "Multi-campaign knowledge structuring system with embedded wiki-vault MCP server — ontology building, causal modeling, dimensional analysis, argument mapping.",
"type": "module",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"bin": {
"knowledge-structuring": "dist/server.js"
},
"files": [
"dist",
"skills",
"README.md",
"LICENSE",
"ENTRY.md"
],
"scripts": {
"build": "tsc",
"mcp": "tsx src/server.ts",
"test": "vitest run",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"mcp",
"model-context-protocol",
"wiki",
"knowledge-graph",
"research",
"obsidian",
"ontology",
"causal-modeling",
"argument-mapping",
"dimensional-analysis"
],
"repository": {
"type": "git",
"url": "https://github.com/yogsoth-ai/knowledge-structuring.git"
},
"bugs": {
"url": "https://github.com/yogsoth-ai/knowledge-structuring/issues"
},
"homepage": "https://github.com/yogsoth-ai/knowledge-structuring#readme",
"author": "yogsoth-ai",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^25.8.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"engines": {
"node": ">=20"
}
}