forked from juareznasato/vuetify-money
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.29 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
{
"name": "vuetify-money-3",
"version": "2.0.2",
"description": "Money component for vuetify 3.x.",
"author": {
"name": "Mibs",
"email": "[email protected]"
},
"keywords": [
"vuejs",
"vuetify",
"v-text-field",
"money",
"currency",
"decimal"
],
"exports": {
".": "./lib/index.js"
},
"files": [
"src/components/*",
"lib/*"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mibsbalsante/vuetify-money-3.git"
},
"private": false,
"scripts": {
"serve": "vite serve",
"build": "vite build",
"lint": "eslint . --fix --ignore-path .gitignore"
},
"license": "MIT",
"readmeFilename": "README.md",
"main": "src/index.js",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@mdi/font": "^7.3.67",
"@rushstack/eslint-patch": "^1.6.0",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/eslint-config-prettier": "^8.0.0",
"eslint": "^8.53.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.18.1",
"prettier": "^3.1.0",
"vite": "^4.5.0",
"vite-plugin-vuetify": "^1.0.2",
"vue": "^3.3.8",
"vuetify": "^3.4.3"
},
"peerDependencies": {
"@mdi/font": "^7",
"vue": "^3",
"vuetify": "^3"
}
}