-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "clippy",
"version": "1.3.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",
"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 --expanded-format --with-serde both",
"icon": "tauri icon"
},
"dependencies": {
"@tauri-apps/api": "^2.1.0",
"@tauri-apps/plugin-process": "~2",
"dayjs": "^1.11.13",
"solid-icons": "^1.1.0",
"solid-js": "^1.9.3"
},
"devDependencies": {
"@tauri-apps/cli": "^2.1.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.48",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-solid": "^2.10.2",
"cross-env": "^7.0.3"
}
}