-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.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
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
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "do-knowledge-studio",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@10.30.3",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
],
"overrides": {
"esbuild@<0.28.1": "~0.28.1",
"ws@<8.21.0": "~8.21.0",
"dompurify": "3.4.9",
"protobufjs@<7.6.3": "~7.6.3",
"vite@<8.0.16": "~8.0.16"
}
},
"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": "node --max-old-space-size=4096 node_modules/vitest/vitest.mjs 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",
"@react-pdf/renderer": "~4.5.1",
"@sqlite.org/sqlite-wasm": "3.45.3-build3",
"@tanstack/react-virtual": "~3.13.25",
"@tiptap/core": "3.23.5",
"@tiptap/extension-placeholder": "~3.25.0",
"@tiptap/pm": "~3.23.4",
"@tiptap/react": "~3.23.4",
"@tiptap/starter-kit": "~3.23.4",
"commander": "~15.0.0",
"docx": "~9.7.1",
"dompurify": "3.4.9",
"graphology": "~0.26.0",
"graphology-layout-forceatlas2": "~0.10.1",
"happy-dom": "~20.10.4",
"jszip": "~3.10.1",
"lucide-react": "~1.17.0",
"mind-elixir": "~5.12.2",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-router-dom": "~7.15.1",
"sigma": "~3.0.0-beta.27",
"zod": "~4.4.3",
"zustand": "~5.0.14"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@playwright/test": "~1.61.0",
"@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/jsdom": "~28.0.3",
"@types/node": "~25.9.3",
"@types/react": "~19.2.17",
"@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.11.1",
"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",
"jsdom": "~29.1.1",
"picomatch": "~4.0.4",
"rollup-plugin-visualizer": "~7.0.1",
"ts-node": "~10.9.2",
"tsx": "~4.22.4",
"typescript": "~6.0.3",
"typescript-eslint": "~8.61.1",
"vite": "~8.0.14",
"vitest": "~4.1.4"
}
}