-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 1.96 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
{
"name": "vue3-hive-ui-kit",
"private": false,
"version": "0.8.0",
"type": "module",
"description": "UI kit for Vue 3",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly && mv dist/src dist/types",
"preserve": "vite build",
"serve": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "exit 0",
"prepublishOnly": "npm run build"
},
"main": "./dist/vue-hive.umd.js",
"module": "./dist/vue-hive.es.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Smoren/vue3-hive-ui-kit.git"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/vue-fontawesome": "^3.0.6",
"@vueup/vue-quill": "^1.2.0",
"axios": "^1.6.7",
"date-fns": "^2.30.0",
"maska": "^2.1.11",
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"remixicon": "^3.5.0",
"uuid": "^9.0.1",
"vue": "^3.4.21"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@types/uuid": "^9.0.6",
"@vitejs/plugin-vue": "^4.4.0",
"sass": "^1.69.5",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vue-tsc": "^2.0.29"
},
"author": {
"name": "Smoren",
"url": "https://github.com/Smoren"
},
"contributors": [
{
"name": "Anton Lvov",
"url": "https://github.com/AntonL9vov"
},
{
"name": "Garrison",
"url": "https://github.com/GarriGarrison"
},
{
"name": "Anastasiya Golubeva",
"url": "https://github.com/anastansa"
},
{
"name": "Smoren",
"url": "https://github.com/Smoren"
}
],
"license": "MIT"
}