forked from denolehov/annot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.62 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
{
"name": "annot",
"version": "0.13.1",
"description": "Human-in-the-loop annotation tool for AI workflows",
"type": "module",
"scripts": {
"postinstall": "node scripts/copy-excalidraw-fonts.js",
"dev": "vite dev",
"build": "svelte-kit sync && vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"tauri": "tauri",
"demo": "tauri dev -- -- ../test-fixtures/sample.md",
"demo:diff": "tauri dev -- -- ../test-fixtures/sample.diff",
"demo:large": "tauri dev -- -- ../test-fixtures/large.md",
"demo:portals": "tauri dev -- -- ../test-fixtures/portals.md",
"demo:mermaid": "tauri dev -- -- ../test-fixtures/mermaid-varieties.md",
"test": "vitest run",
"test:watch": "vitest",
"test:rust": "cargo test --manifest-path src-tauri/Cargo.toml",
"install:local": "ln -sf $PWD/src-tauri/target/release/bundle/macos/annot.app/Contents/MacOS/annot ~/.local/bin/annot && echo 'Installed annot to ~/.local/bin/annot'"
},
"license": "AGPL-3.0",
"dependencies": {
"@excalidraw/excalidraw": "^0.18.1",
"@excalidraw/mermaid-to-excalidraw": "^2.2.2",
"@floating-ui/dom": "^1.7.6",
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tiptap/core": "^3.27.1",
"@tiptap/extension-bold": "^3.27.1",
"@tiptap/extension-code": "^3.27.1",
"@tiptap/extension-document": "^3.27.1",
"@tiptap/extension-hard-break": "^3.27.1",
"@tiptap/extension-italic": "^3.27.1",
"@tiptap/extension-list": "^3.27.1",
"@tiptap/extension-paragraph": "^3.27.1",
"@tiptap/extension-placeholder": "^3.27.1",
"@tiptap/extension-strike": "^3.27.1",
"@tiptap/extension-text": "^3.27.1",
"@tiptap/extensions": "^3.27.1",
"@tiptap/pm": "^3.27.1",
"@tiptap/suggestion": "^3.27.1",
"fuse.js": "^7.4.2",
"mermaid": "^11.15.0",
"panzoom": "^9.4.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"svelte-tiptap": "^3.0.1"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.66.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tauri-apps/cli": "^2.11.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"jsdom": "^29.1.1",
"svelte": "^5.56.3",
"svelte-check": "^4.6.0",
"typescript": "~6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"packageManager": "pnpm@10.33.4"
}