-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 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": "clippy",
"version": "1.6.13",
"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": "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",
"format": "prettier --write .",
"version:sync": "node .github/sync-version.js",
"postinstall": "husky"
},
"dependencies": {
"@corvu/tooltip": "0.2.2",
"@solid-primitives/i18n": "2.2.1",
"@tauri-apps/api": "2.10.1",
"dayjs": "1.11.20",
"solid-icons": "1.2.0",
"solid-js": "1.9.12"
},
"devDependencies": {
"@tailwindcss/vite": "4.2.4",
"@tauri-apps/cli": "2.10.1",
"cross-env": "10.1.0",
"husky": "9.1.7",
"prettier": "3.8.3",
"prettier-plugin-tailwindcss": "0.7.3",
"tailwindcss": "4.2.4",
"typescript": "6.0.3",
"vite": "8.0.10",
"vite-plugin-checker": "0.13.0",
"vite-plugin-solid": "2.11.12"
}
}