-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.75 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.75 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
{
"name": "crow",
"version": "0.1.13",
"type": "module",
"scripts": {
"postinstall": "patch-package",
"setup": "node scripts/generate-extension-meta.js",
"setup:full": "bash scripts/setup-extensions.sh && node scripts/generate-extension-meta.js",
"predev": "node scripts/copy-extensions.js",
"dev": "npm run setup && node --max-old-space-size=8192 node_modules/vite/bin/vite.js",
"build": "npm run setup && node scripts/copy-extensions.js && node --max-old-space-size=12288 node_modules/vite/bin/vite.js build",
"postbuild": "node scripts/postbuild.js",
"preview": "vite preview",
"tauri": "cross-env tauri",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.{ts,tsx,js,json}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx,js,json}'",
"rust:check": "cd src-tauri && cargo check",
"rust:clippy": "cd src-tauri && cargo clippy --all-targets -- -D warnings",
"rust:fmt": "cd src-tauri && cargo fmt --all -- --check",
"rust:fmt:fix": "cd src-tauri && cargo fmt --all"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.22.1",
"@handlewithcare/remark-prosemirror": "^0.1.5",
"@microsoft/1ds-core-js": "^4.3.11",
"@microsoft/1ds-post-js": "^4.3.11",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-shell": "^2",
"@tiptap/core": "^3.26.0",
"@tiptap/extension-highlight": "^3.26.1",
"@tiptap/extension-image": "^3.26.0",
"@tiptap/extension-mention": "^3.26.0",
"@tiptap/extension-placeholder": "^3.26.0",
"@tiptap/extension-table": "^3.26.1",
"@tiptap/extension-table-cell": "^3.26.1",
"@tiptap/extension-table-header": "^3.26.1",
"@tiptap/extension-table-row": "^3.26.1",
"@tiptap/markdown": "^3.26.1",
"@tiptap/starter-kit": "^3.26.0",
"@tiptap/suggestion": "^3.26.0",
"@vscode/codicons": "^0.0.45",
"@vscode/iconv-lite-umd": "^0.7.1",
"@vscode/tree-sitter-wasm": "^0.3.0",
"@xterm/addon-canvas": "^0.7.0",
"@xterm/addon-clipboard": "^0.2.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-image": "^0.9.0",
"@xterm/addon-ligatures": "^0.10.0",
"@xterm/addon-progress": "^0.2.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^5.5.0",
"highlight.js": "^11.11.1",
"katex": "^0.17.0",
"marked": "^18.0.5",
"marked-highlight": "^2.2.4",
"marked-katex-extension": "^5.1.10",
"marked-mermaidjs": "^0.1.1",
"mermaid": "^11.15.0",
"monaco-editor": "^0.52.2",
"prosemirror-model": "^1.25.7",
"prosemirror-state": "^1.4.4",
"prosemirror-view": "^1.41.8",
"remark-gfm": "^4.0.1",
"remark-highlight": "^0.1.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"tas-client": "^0.3.2",
"tippy.js": "^6.3.7",
"unified": "^11.0.5",
"vfile": "^6.0.3",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.3.2"
},
"devDependencies": {
"@tauri-apps/cli": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@types/katex": "^0.16.8",
"@types/trusted-types": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@webgpu/types": "^0.1.69",
"@xterm/headless": "^6.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"jschardet": "^3.1.4",
"patch-package": "^8.0.1",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.8.3",
"typescript": "~5.6.2",
"typescript-eslint": "^8.58.2",
"vite": "^6.0.3",
"vite-plugin-static-copy": "^2.2.0",
"vite-plugin-tauri-in-the-browser": "^0.1.1"
}
}