-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.58 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
{
"name": "@souls-directory/studio",
"version": "0.1.2",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsx scripts/generate-changelog.ts && tsc && vite build",
"changelog:generate": "tsx scripts/generate-changelog.ts",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"tauri": "tauri",
"fetch-souls": "pnpm tsx scripts/fetch-souls.ts",
"build:mac": "./scripts/build-mac.sh",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:install": "playwright install chromium",
"test": "vitest run",
"test:watch": "vitest",
"cargo:check": "cargo check --manifest-path src-tauri/Cargo.toml",
"cargo:nextest": "cargo nextest run --manifest-path src-tauri/Cargo.toml --no-tests pass",
"cargo:audit": "cargo audit --file src-tauri/Cargo.lock",
"cargo:deny": "cd src-tauri && cargo deny check --config deny.toml",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {
"@convex-dev/auth": "^0.0.91",
"@openpanel/web": "^1.2.0",
"@sentry/react": "^10.43.0",
"@tanstack/react-virtual": "^3.13.23",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-deep-link": "^2.4.7",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-http": "^2.5.7",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-sql": "^2.3.2",
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/plugin-updater": "^2.10.0",
"@tauri-apps/plugin-window-state": "^2.4.1",
"@uiw/react-markdown-preview": "^5.1.5",
"cmdk": "^1.1.1",
"convex": "^1.33.1",
"lucide-react": "^0.577.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.7.3",
"sonner": "^2.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@sentry/vite-plugin": "^5.1.1",
"@tailwindcss/postcss": "^4",
"@tauri-apps/cli": "^2.10.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^29.0.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^4.1.0",
"yaml": "^2.8.3"
}
}