-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.12 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.12 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
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
98
99
100
101
102
103
104
105
106
107
{
"name": "eco-paste",
"description": "一款开源的跨平台剪贴板管理工具",
"author": {
"name": "ayangweb",
"email": "ayangweb@foxmail.com"
},
"version": "0.6.0-beta.3",
"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.1",
"@ant-design/icons": "^5.6.1",
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-autostart": "^2.5.0",
"@tauri-apps/plugin-dialog": "^2.4.0",
"@tauri-apps/plugin-fs": "^2.4.2",
"@tauri-apps/plugin-global-shortcut": "^2.3.0",
"@tauri-apps/plugin-log": "^2.7.0",
"@tauri-apps/plugin-opener": "^2.5.0",
"@tauri-apps/plugin-os": "^2.3.1",
"@tauri-apps/plugin-process": "^2.3.0",
"@tauri-apps/plugin-sql": "^2.3.0",
"@tauri-apps/plugin-updater": "^2.9.0",
"@unocss/reset": "^0.63.6",
"ahooks": "^3.9.5",
"antd": "^5.27.5",
"clsx": "^2.1.1",
"dayjs": "^1.11.18",
"dompurify": "^3.3.0",
"es-toolkit": "^1.40.0",
"filesize": "^10.1.6",
"i18next": "^23.16.8",
"is-url": "^1.2.4",
"kysely": "^0.28.8",
"kysely-dialect-tauri": "^1.2.1",
"kysely-plugin-serialize": "^0.8.2",
"mac-scrollbar": "^0.13.8",
"nanoid": "^5.1.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.7.4",
"react-mark.js": "^10.0.10",
"react-markdown": "^9.1.0",
"react-masonry-css": "^1.0.16",
"react-router-dom": "6.27.0",
"react-virtuoso": "^4.14.1",
"rehype-raw": "^7.0.0",
"rtf.js": "^3.0.9",
"tauri-plugin-clipboard-x-api": "^2.0.1",
"tauri-plugin-fs-pro-api": "^2.4.0",
"tauri-plugin-locale-api": "^2.0.1",
"tauri-plugin-macos-permissions-api": "^2.3.0",
"valtio": "^2.1.8"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@iconify-json/hugeicons": "^1.2.17",
"@iconify-json/iconamoon": "^1.2.2",
"@iconify-json/lets-icons": "^1.2.1",
"@iconify-json/logos": "^1.2.9",
"@iconify-json/lucide": "^1.2.70",
"@iconify-json/simple-icons": "^1.2.54",
"@iconify-json/skill-icons": "^1.2.3",
"@tauri-apps/cli": "^2.8.4",
"@types/is-url": "^1.2.32",
"@types/node": "^22.18.11",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"lint-staged": "^15.5.2",
"npm-run-all": "^4.1.5",
"release-it": "^17.11.0",
"sass": "^1.93.2",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.20.6",
"type-fest": "^4.41.0",
"typescript": "^5.9.3",
"typescript-plugin-css-modules": "^5.2.0",
"unocss": "^0.63.6",
"vite": "^5.4.20"
},
"simple-git-hooks": {
"commit-msg": "npx --no-install commitlint -e",
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"**.{ts,tsx,json}": [
"biome check --write --no-errors-on-unmatched"
]
}
}