-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.21 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.21 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
{
"name": "do-knowledge-studio",
"private": true,
"version": "0.1.0",
"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 -p tsconfig.app.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
"lint:strict": "eslint . --ext ts,tsx --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": "npm run build && PLAYWRIGHT_MODE=production playwright test",
"typecheck": "tsc -b",
"cli": "node --loader ts-node/esm cli/index.ts"
},
"dependencies": {
"@orama/orama": "^3.1.18",
"@sqlite.org/sqlite-wasm": "3.45.3-build3",
"@tiptap/extension-placeholder": "^2.2.4",
"@tiptap/pm": "^2.2.4",
"@tiptap/react": "^2.2.4",
"@tiptap/starter-kit": "^2.2.4",
"commander": "^12.0.0",
"graphology": "^0.25.4",
"lucide-react": "^0.363.0",
"mind-elixir": "^5.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sigma": "^3.0.0-beta.27",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@playwright/test": "^1.42.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^20.11.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.39.4",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.6",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.59.1",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}