-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.04 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "do-knowledge-studio",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@10.30.3",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"description": "Local-first knowledge studio — rich text, knowledge graph, mind maps, SQLite WASM FTS5 search, Orama RAG & AI agent harness. No backend required.",
"keywords": [
"local-first",
"react",
"typescript",
"vite",
"sqlite-wasm",
"fts5",
"full-text-search",
"orama",
"tiptap",
"knowledge-graph",
"mind-map",
"sigma-js",
"ai-agents",
"triz"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ci": "pnpm run build && PLAYWRIGHT_MODE=production playwright test",
"typecheck": "tsc --noEmit",
"cli": "node --loader ts-node/esm cli/index.ts",
"quality_gate": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@orama/orama": "^3.1.18",
"@orama/plugin-embeddings": "^3.1.18",
"@sqlite.org/sqlite-wasm": "3.45.3-build3",
"@tanstack/react-virtual": "^3.13.25",
"@tiptap/core": "3.23.5",
"@tiptap/extension-placeholder": "^3.23.4",
"@tiptap/pm": "^3.23.4",
"@tiptap/react": "^3.23.4",
"@tiptap/starter-kit": "^3.23.4",
"commander": "^12.0.0",
"docx": "^9.7.0",
"dompurify": "^3.4.6",
"graphology": "^0.25.4",
"graphology-layout-forceatlas2": "^0.10.1",
"lucide-react": "^1.16.0",
"mind-elixir": "^5.12.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.15.1",
"sigma": "^3.0.0-beta.27",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "8.57.1",
"@playwright/test": "^1.42.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/dompurify": "^3.2.0",
"@types/node": "^20.11.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.5",
"better-sqlite3": "^12.10.0",
"eslint": "^8.57.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.4.6",
"globals": "^17.6.0",
"graphology-types": "^0.24.8",
"happy-dom": "^20.9.0",
"picomatch": "^4.0.4",
"rollup-plugin-visualizer": "^7.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.14",
"vitest": "^4.1.4"
}
}