-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.7 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
{
"name": "megamem-mcp",
"private": true,
"version": "1.7.6",
"description": "Obsidian plugin and MCP server for GraphRAG.",
"author": "Casey Bjørn",
"license": "MIT",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "vite build --mode development --watch",
"build": "vite build --mode production",
"bjorn": "vite build --mode bjorn",
"bjorn:watch": "vite build --mode bjorn --watch",
"check": "svelte-check --tsconfig ./tsconfig.json",
"format": "biome format --write ./src",
"lint": "biome lint --apply-unsafe ./src",
"test:py": "pytest -m unit -v",
"test:py:integration": "pytest -m integration -v",
"test:e2e": "wdio run ./wdio.conf.mts",
"test": "npm run test:py && npm run test:e2e"
},
"dependencies": {
"sql.js": "^1.12.0",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"chart.js": "^4.4.4"
},
"devDependencies": {
"@biomejs/biome": "1.3.3",
"@sveltejs/vite-plugin-svelte": "^2.4.6",
"@tsconfig/svelte": "^5.0.2",
"@types/sql.js": "^1.4.9",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.8.10",
"@unocss/extractor-svelte": "^0.57.2",
"builtin-modules": "^3.3.0",
"bun-types": "latest",
"obsidian": "^1.4.11",
"svelte": "^4.2.2",
"svelte-check": "^3.5.2",
"tslib": "^2.6.2",
"typescript": "^5.9.2",
"unocss": "^0.57.2",
"vite": "^4.5.0",
"vite-plugin-static-copy": "^0.17.0",
"@wdio/cli": "^9.28.0",
"@wdio/globals": "^9.17.0",
"@wdio/local-runner": "^9.28.0",
"@wdio/mocha-framework": "^9.28.0",
"mocha": "^10.8.2",
"wdio-obsidian-reporter": "^3.1.1",
"wdio-obsidian-service": "^3.1.1"
}
}