forked from EcoPasteHub/EcoPaste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "eco-paste",
"description": "一款开源的跨平台剪贴板管理工具",
"author": {
"name": "ayangweb",
"email": "[email protected]"
},
"private": true,
"version": "0.0.5",
"type": "module",
"scripts": {
"dev": "run-s build:icon dev:vite",
"build": "run-s build:*",
"dev:vite": "vite",
"build:icon": "tauri icon public/logo.png",
"build:vite": "vite build",
"tauri": "tauri",
"lint": "biome check --write src",
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks",
"release": "release-it"
},
"dependencies": {
"@ant-design/happy-work-theme": "^1.0.0",
"@tanstack/react-virtual": "^3.8.3",
"@tauri-apps/api": "^1.6.0",
"@unocss/reset": "^0.60.3",
"ahooks": "^3.8.0",
"antd": "^5.19.1",
"arcdash": "^0.0.51",
"clsx": "^2.1.1",
"dayjs": "^1.11.11",
"i18next": "^23.12.1",
"lodash-es": "^4.17.21",
"mac-scrollbar": "^0.13.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^15.0.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.23.1",
"rehype-raw": "^7.0.0",
"tauri-plugin-autostart-api": "github:tauri-apps/tauri-plugin-autostart#v1",
"tauri-plugin-context-menu": "^0.8.0",
"tauri-plugin-sql-api": "github:tauri-apps/tauri-plugin-sql#v1",
"valtio": "^1.13.2",
"valtio-persist": "^1.0.2"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@iconify-json/hugeicons": "^1.1.0",
"@iconify-json/iconamoon": "^1.1.4",
"@iconify-json/lucide": "^1.1.189",
"@iconify-json/ri": "^1.1.20",
"@tauri-apps/cli": "^1.6.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.9",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-window": "^1.8.8",
"@unocss/preset-rem-to-px": "^0.60.3",
"@vitejs/plugin-react": "^4.2.1",
"lint-staged": "^15.2.5",
"npm-run-all": "^4.1.5",
"release-it": "^17.4.1",
"sass": "^1.77.4",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.16.2",
"typescript": "^5.0.2",
"typescript-plugin-css-modules": "^5.1.0",
"unocss": "^0.60.3",
"unplugin-auto-import": "^0.17.6",
"vite": "^5.0.0"
},
"simple-git-hooks": {
"commit-msg": "npx --no-install commitlint -e",
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"**.{ts,tsx,json}": ["biome check --apply --no-errors-on-unmatched"]
}
}