-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.93 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
{
"name": "mind-matrix",
"version": "1.0.0",
"description": "Enhance your Obsidian experience by seamlessly syncing your notes with a Supabase vector database. Mind Matrix leverages AI-powered embeddings for semantic search, robust offline support, and cross-device coordination, ensuring your personal knowledge base is always accessible and intelligently organized.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"lint": "eslint . --ext .ts",
"prompt": "bash -c 'echo \"### Prompts.md ###\\nFilename: Prompts.md\\n\" > combined_code_state.txt && cat Prompts.md | tr \"\\n\" \" \" >> combined_code_state.txt && echo \"\\n### main.ts ###\\nFilename: main.ts\\n\" >> combined_code_state.txt && cat main.ts | tr \"\\n\" \" \" >> combined_code_state.txt && for file in $(find models/ services/ settings/ utils/ constants/ sql/ -type f); do echo -e \"\\n### $file ###\\nFilename: $(basename \\\"$file\\\")\\n\"; cat \"$file\" | tr \"\\n\" \" \"; done >> combined_code_state.txt'",
"loc": "open .",
"extract": "bash extract.sh"
},
"keywords": [
"obsidian",
"vector",
"postgres",
"ai",
"notes",
"sync",
"assistant"
],
"author": "khwerhahn",
"license": "MIT",
"packageManager": "yarn@4.6.0",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"jest": "^29.5.0",
"obsidian": "latest",
"ts-jest": "^29.5.0",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@supabase/supabase-js": "^2.39.0",
"@types/uuid": "^9.0.0",
"dotenv": "^16.3.1",
"openai": "^4.0.0",
"postgres": "^3.4.3",
"uuid": "^9.0.0"
}
}