-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "@fedorae/vfc",
"type": "module",
"version": "0.1.1",
"private": false,
"main": "./dist/vfc.umd.cjs",
"module": "./dist/vfc.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/vfc.js",
"require": "./dist/vfc.umd.cjs"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"build": "vite build",
"preview": "vite preview",
"play": "cd playground; yarn dev",
"release": "yarn build && standard-version && yarn publish && git push --follow-tags"
},
"dependencies": {
"@mdi/font": "5.9.55",
"roboto-fontface": "*",
"vue": "^3.4.3",
"vuetify": "^3.4.9",
"webfontloader": "^1.0.0"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.1.0",
"@vitejs/plugin-vue": "^3.0.3",
"vite-plugin-vuetify": "^1.0.0-alpha.12",
"vite": "^3.1.8"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"no ie 11"
]
}