-
-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.15 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.15 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
{
"name": "mysigmail",
"type": "module",
"version": "2.0.0",
"private": true,
"description": "An open-source email signature generator for Gmail, Outlook, Apple Mail, etc.",
"author": {
"name": "Anton Reshetov",
"email": "[email protected]"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "vue-tsc --noEmit && eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp -c 'build: release v' -t",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "simple-git-hooks",
"add:shadcn": "pnpm dlx [email protected] add"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.891.0",
"@aws-sdk/lib-storage": "^3.891.0",
"@tailwindcss/vite": "^4.1.13",
"@vueuse/core": "^13.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cropperjs": "^1.6.2",
"lucide-vue-next": "^0.544.0",
"reka-ui": "^2.5.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.13",
"tw-animate-css": "^1.3.8",
"vanilla-colorful": "^0.7.2",
"vee-validate": "^4.15.1",
"vue": "^3.5.17",
"vue-router": "4",
"vue-sonner": "^2.0.8",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^5.3.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@iconify-json/uil": "^1.2.3",
"@types/node": "^24.4.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/tsconfig": "^0.7.0",
"bumpp": "^10.2.3",
"eslint": "^9.35.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-perfectionist": "^4.15.0",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"typescript": "~5.8.3",
"unplugin-auto-import": "^20.1.0",
"unplugin-icons": "^22.3.0",
"unplugin-vue-components": "^29.0.0",
"vite": "^7.0.3",
"vue-tsc": "^2.2.12"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
]
}
}