-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "mon-ui",
"description": "Personal Vue 3 UI library ",
"private": true,
"version": "0.0.0",
"license": "UNLICENSED",
"author": "irfanismail <irfan.ismail96@gmail.com> (https://irfanismail.com)",
"main": "./dist/mon-ui.index.js",
"module": "./dist/mon-ui.index.js",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"watch": "vue-tsc --noEmit && vite build --watch",
"prod": "vue-tsc --noEmit && vite build",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install",
"test": "jest",
"lint": "eslint src/**/*.{js,ts,vue} --fix",
"release": "standard-version"
},
"dependencies": {
"vue": "^3.2.25"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.3",
"@types/node": "^17.0.25",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vueform/multiselect": "^2.3.3",
"autoprefixer": "^10.4.4",
"click-outside-vue3": "^4.0.1",
"eslint": "^8.14.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"eslint-plugin-vue": "^8.7.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"postcss": "^8.4.12",
"sass": "^1.50.1",
"standard-version": "^9.3.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vue-tsc": "^0.29.8"
}
}