-
-
Notifications
You must be signed in to change notification settings - Fork 169
/
package.json
57 lines (57 loc) · 1.22 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
{
"name": "@iconoir/vue",
"version": "7.10.0",
"description": "Vue library for Iconoir, the biggest open source icon library with tons of free icons.",
"keywords": [
"icons",
"svg",
"library",
"vue"
],
"homepage": "https://iconoir.com",
"repository": {
"type": "git",
"url": "https://github.com/iconoir-icons/iconoir.git",
"directory": "packages/iconoir-vue"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/iconoir"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"vue-demi": "^0.14.6"
},
"devDependencies": {
"vue": "^3.3.12"
},
"peerDependencies": {
"@vue/composition-api": ">=1.0.0-rc.1",
"vue": "^2.6.11 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
}