-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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": "vue-icomoon",
"description": "It allows you to simply view the icons in the selection.json file provided by Icomoon.",
"version": "0.6.1",
"author": {
"name": "Aykut Kardaş",
"email": "aykutkrds@gmail.com"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
},
"bugs": {
"url": "https://github.com/aykutkardas/vue-icomoon/issues"
},
"homepage": "https://github.com/aykutkardas/vue-icomoon#readme",
"main": "./dist/vue-icomoon.umd.js",
"module": "./dist/vue-icomoon.es.js",
"types": "./lib.d.ts",
"exports": {
".": {
"require": "./dist/vue-icomoon.umd.js",
"import": "./dist/vue-icomoon.es.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/aykutkardas/vue-icomoon.git"
},
"keywords": [
"Vue",
"Vue3",
"IcoMoon",
"SVG",
"Icon"
],
"peerDependencies": {
"vue": "^3.2.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.9.3",
"vite": "^2.6.4"
}
}