-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "clippy",
"version": "1.4.0",
"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 --model-extra-derives Default --expanded-format --with-serde both",
"icon": "tauri icon"
},
"dependencies": {
"@corvu/tooltip": "0.2.1",
"@solid-primitives/i18n": "2.2.0",
"@tauri-apps/api": "2.2.0",
"dayjs": "1.11.13",
"solid-icons": "1.1.0",
"solid-js": "1.9.4"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@tauri-apps/cli": "2.2.5",
"cross-env": "7.0.3",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.0",
"typescript": "5.7.3",
"vite": "6.0.11",
"vite-plugin-checker": "0.8.0",
"vite-plugin-solid": "2.11.0"
}
}