-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "clippy",
"version": "1.3.1",
"description": "Clipboard Manager built with Rust & Typescript",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"tauri": "cross-env NO_STRIP=true tauri",
"tauri:build": "cross-env NO_STRIP=true tauri build --verbose",
"d": "cross-env COLORBT_SHOW_HIDDEN=1 tauri dev",
"gen": "sea-orm-cli migrate refresh -v -d src-tauri/migration && sea-orm-cli generate entity -l -o src-tauri/entity/src --expanded-format --with-serde both",
"icon": "tauri icon"
},
"dependencies": {
"@corvu/tooltip": "0.2.1",
"@solid-primitives/i18n": "2.1.1",
"@tauri-apps/api": "2.2.0",
"dayjs": "1.11.13",
"solid-icons": "1.1.0",
"solid-js": "1.9.4"
},
"devDependencies": {
"@tauri-apps/cli": "2.2.5",
"autoprefixer": "10.4.20",
"cross-env": "7.0.3",
"postcss": "8.5.1",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.10",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"vite": "6.0.7",
"vite-plugin-checker": "0.8.0",
"vite-plugin-solid": "2.11.0"
}
}