-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.27 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
{
"name": "idea-note",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"mock:ai": "node mock-ai/server.mjs",
"test:mock-ai": "node --test mock-ai/server.test.mjs",
"test:fence-attrs": "node --test tests/fenceAttrs.test.mjs",
"test:result-protocol": "node --test tests/resultProtocol.test.mjs",
"test:workspace-path": "node --test --experimental-strip-types tests/workspacePath.test.mjs",
"test:input-schema": "node --test --experimental-strip-types tests/inputSchema.test.mjs",
"test:secret-block": "node --test --experimental-strip-types tests/secretBlock.test.mjs",
"test:vault-setup-stage": "node --test --experimental-strip-types tests/vaultSetupStage.test.mjs",
"test:vault-rotation": "node --test --experimental-strip-types tests/vaultRotation.test.mjs",
"tauri:dev": "tauri dev --config src-tauri/tauri.dev.conf.json",
"tauri": "tauri"
},
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/language-data": "^6.5.2",
"@codemirror/merge": "^6.12.2",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.0",
"@lezer/highlight": "^1.2.3",
"@lezer/markdown": "^1.6.4",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-fs": "^2",
"@tauri-apps/plugin-http": "^2.5.9",
"@tauri-apps/plugin-opener": "^2",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"codemirror": "^6.0.2",
"construct-style-sheets-polyfill": "^3.1.0",
"diff": "^9.0.0",
"dompurify": "^3.4.8",
"katex": "^0.17.0",
"lucide-react": "^0.469.0",
"markdown-it": "^14.2.0",
"mermaid": "10.9.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/markdown-it": "^14.1.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"terser": "^5.48.0",
"typescript": "~5.8.3",
"vite": "^8.0.16"
}
}