forked from frappe/frappe-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.42 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
{
"name": "frappe-ui",
"version": "0.1.54",
"description": "A set of components and utilities for rapid UI development",
"main": "./src/index.js",
"scripts": {
"test": "npx prettier --check ./src",
"prettier": "npx prettier -w ./src",
"prepare": "husky install",
"bump-and-release": "git pull --rebase origin main && yarn version --patch && git push && git push --tags",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview"
},
"files": [
"src",
"vite.js"
],
"repository": {
"type": "git",
"url": "https://github.com/frappe/frappe-ui.git"
},
"author": "Frappe Technologies Pvt. Ltd.",
"license": "MIT",
"dependencies": {
"@headlessui/vue": "^1.7.14",
"@popperjs/core": "^2.11.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.0",
"@tiptap/extension-color": "^2.0.3",
"@tiptap/extension-highlight": "^2.0.3",
"@tiptap/extension-image": "^2.0.3",
"@tiptap/extension-link": "^2.0.3",
"@tiptap/extension-mention": "^2.0.3",
"@tiptap/extension-placeholder": "^2.0.3",
"@tiptap/extension-table": "^2.0.3",
"@tiptap/extension-table-cell": "^2.0.3",
"@tiptap/extension-table-header": "^2.0.3",
"@tiptap/extension-table-row": "^2.0.3",
"@tiptap/extension-text-align": "^2.0.3",
"@tiptap/extension-text-style": "^2.0.3",
"@tiptap/extension-typography": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"@tiptap/suggestion": "^2.0.3",
"@tiptap/vue-3": "^2.0.3",
"@vueuse/core": "^10.4.1",
"feather-icons": "^4.28.0",
"idb-keyval": "^6.2.0",
"radix-vue": "^1.5.3",
"showdown": "^2.1.0",
"socket.io-client": "^4.5.1",
"tippy.js": "^6.3.7"
},
"peerDependencies": {
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@histoire/plugin-vue": "^0.17.14",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
"cross-fetch": "^3.1.5",
"histoire": "^0.17.14",
"husky": ">=6",
"lint-staged": ">=10",
"postcss": "^8.4.21",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.2.7",
"typescript": "^5.0.2",
"vite": "^4.1.0",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"lint-staged": {
"*.{js,css,md,vue}": "prettier --write"
}
}