-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.31 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.31 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
{
"name": "@mysigmail/card",
"type": "module",
"version": "0.13.0",
"private": true,
"author": "Anton Reshetov",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit --skipLibCheck && vite build",
"preview": "vite preview",
"lint": "vue-tsc --noEmit && eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpy release",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@mysigmail/menu-aim": "^1.0.5",
"@mysigmail/vue-email-components": "^0.2.2",
"@tiptap/extension-bold": "^2.1.13",
"@tiptap/extension-color": "^2.1.13",
"@tiptap/extension-document": "^2.1.13",
"@tiptap/extension-hard-break": "^2.1.13",
"@tiptap/extension-italic": "^2.1.13",
"@tiptap/extension-link": "^2.1.13",
"@tiptap/extension-paragraph": "^2.1.13",
"@tiptap/extension-text": "^2.1.13",
"@tiptap/extension-text-align": "^2.1.13",
"@tiptap/extension-text-style": "^2.1.13",
"@tiptap/extension-underline": "^2.1.13",
"@tiptap/vue-3": "^2.1.13",
"@vueuse/core": "^14.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.563.0",
"nanoid": "^5.0.2",
"reka-ui": "^2.8.0",
"sanitize-html": "^2.17.0",
"sortablejs": "^1.15.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"vanilla-colorful": "^0.7.2",
"vue": "^3.5.28"
},
"devDependencies": {
"@antfu/eslint-config": "^7.3.0",
"@antonreshetov/bumpy": "^0.3.0",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@iconify-json/uil": "^1.2.3",
"@tailwindcss/vite": "^4.1.0",
"@types/sanitize-html": "^2.16.0",
"@types/sortablejs": "^1.15.4",
"@vitejs/plugin-vue": "^6.0.4",
"bumpp": "^9.2.0",
"eslint": "^10.0.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^4.1.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"unplugin-auto-import": "^0.16.7",
"unplugin-icons": "^0.17.1",
"unplugin-vue-components": "^0.25.2",
"vite": "^7.3.1",
"vue-tsc": "^3.2.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit $1"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
]
}
}