-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "souffle",
"private": true,
"version": "0.4.0",
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"generate:types": "cargo test export_typescript_bindings --manifest-path src-tauri/Cargo.toml -- --nocapture",
"check:generated-types": "npm run generate:types && git diff --exit-code src/lib/types/generated.ts src/lib/api/generated.ts",
"tauri": "tauri",
"dev:fresh": "./scripts/dev-fresh.sh",
"test": "vitest run",
"test:e2e": "playwright test"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@tailwindcss/vite": "^4.0.0",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/cli": "^2.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@tsconfig/svelte": "^5.0.8",
"@types/node": "^24.12.0",
"jsdom": "^29.0.1",
"svelte": "^5.57.0",
"svelte-check": "^4.4.5",
"tailwindcss": "^4.0.0",
"typescript": "~5.9.3",
"vite": "^7.3.6",
"vitest": "^5.0.0"
},
"dependencies": {
"@lucide/svelte": "^1.7.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"svelte-i18n": "^4.0.1"
}
}