-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
97 lines (97 loc) · 2.85 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "eco-paste",
"description": "一款开源的跨平台剪贴板管理工具",
"author": {
"name": "ayangweb",
"email": "[email protected]"
},
"version": "0.4.0-beta.2",
"type": "module",
"scripts": {
"dev": "run-s build:icon dev:vite",
"build": "run-s build:*",
"dev:vite": "vite",
"build:icon": "tsx scripts/buildIcon.ts",
"build:vite": "vite build",
"tauri": "tauri",
"lint": "biome check --write src",
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks",
"release": "release-it",
"release-rc": "release-it --preRelease=rc --preReleaseBase=1",
"release-beta": "release-it --preRelease=beta --preReleaseBase=1"
},
"dependencies": {
"@ant-design/happy-work-theme": "^1.0.0",
"@ant-design/icons": "^5.5.1",
"@tanstack/react-virtual": "^3.10.9",
"@tauri-apps/api": "^2.0.3",
"@tauri-apps/plugin-autostart": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.1",
"@tauri-apps/plugin-fs": "^2.0.2",
"@tauri-apps/plugin-global-shortcut": "^2.0.0",
"@tauri-apps/plugin-log": "^2.0.0",
"@tauri-apps/plugin-os": "^2.0.0",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.1",
"@tauri-apps/plugin-sql": "^2.0.1",
"@tauri-apps/plugin-updater": "^2.0.0",
"@unocss/reset": "^0.63.6",
"ahooks": "^3.8.1",
"antd": "^5.21.6",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"filesize": "^10.1.6",
"i18next": "^23.16.4",
"is-url": "^1.2.4",
"lodash-es": "^4.17.21",
"mac-scrollbar": "^0.13.6",
"nanoid": "^5.0.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.1",
"react-markdown": "^9.0.1",
"react-router-dom": "6.27.0",
"rehype-raw": "^7.0.0",
"rtf.js": "^3.0.9",
"valtio": "^2.1.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@iconify-json/hugeicons": "^1.2.1",
"@iconify-json/iconamoon": "^1.2.1",
"@iconify-json/lets-icons": "^1.2.1",
"@iconify-json/logos": "^1.2.3",
"@iconify-json/lucide": "^1.2.12",
"@iconify-json/simple-icons": "^1.2.11",
"@iconify-json/skill-icons": "^1.2.0",
"@tauri-apps/cli": "^2.0.4",
"@types/is-url": "^1.2.32",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@unocss/preset-rem-to-px": "^0.63.6",
"@vitejs/plugin-react": "^4.3.3",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"release-it": "^17.10.0",
"sass": "^1.80.6",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-plugin-css-modules": "^5.1.0",
"unocss": "^0.63.6",
"unplugin-auto-import": "^0.18.3",
"vite": "^5.4.10"
},
"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"]
}
}