-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.88 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.88 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
{
"name": "drawfinity",
"private": true,
"version": "0.1.0",
"homepage": "https://needmorecowbell.github.io/drawfinity/",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"clean": "rm -rf dist src-tauri/target && echo 'Cleaned dist + Cargo target'",
"clean:cache": "rm -rf dist src-tauri/target ~/.local/share/com.drawfinity.app/WebKitCache ~/.local/share/com.drawfinity.app/CacheStorage && echo 'Cleaned dist + Cargo target + WebKitGTK cache'",
"tauri:fresh": "npm run clean:cache && npm run tauri dev",
"tauri:build": "NO_STRIP=true tauri build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"exchange:snapshot": "node scripts/generate-exchange-snapshot.mjs",
"screenshots": "npx playwright test --project=screenshots"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.12.3",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.40.0",
"@lezer/highlight": "^1.2.1",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-http": "^2.5.7",
"@tauri-apps/plugin-opener": "^2",
"codemirror": "^6.0.2",
"lib0": "^0.2.117",
"wasmoon": "^1.16.0",
"y-websocket": "^3.0.0",
"yjs": "^13.6.30"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tauri-apps/cli": "^2",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.0.0",
"mermaid": "^11.13.0",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^4.1.0"
}
}