-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.44 KB
/
package.json
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
{
"name": "ezup",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"tauri:build": "npm run prepare:build:env && tauri build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"tauri": "tauri",
"prepare:build:env": "./scripts/prepare_build.sh",
"build:mac:universal": "tauri build --target universal-apple-darwin"
},
"dependencies": {
"@tauri-apps/api": "^1.5.1",
"@types/path-browserify": "^1.0.0",
"lodash": "^4.17.21",
"path-browserify": "^1.0.1",
"svelte-tauri-filedrop": "^1.0.0",
"tauri-plugin-clipboard-api": "^0.2.4",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@iconify/svelte": "^3.1.4",
"@popperjs/core": "^2.11.6",
"@sveltejs/adapter-static": "next",
"@sveltejs/kit": "^1.15.2",
"@tauri-apps/cli": "^1.5.6",
"@types/lodash": "^4.14.191",
"@types/uuid": "^9.0.0",
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"flowbite": "^1.6.0",
"flowbite-svelte": "^0.29.9",
"postcss": "^8.4.21",
"svelte": "^4.0.5",
"svelte-check": "^3.4.6",
"tailwindcss": "^3.2.4",
"tslib": "^2.6.0",
"typescript": "^5.0.2",
"vite": "^4.4.4"
}
}