-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "vue3-simple-icons",
"version": "13.2.0",
"homepage": "https://vue3-simple-icons.wyatt-herkamp.dev",
"description": "Simple Icons as Vue components.",
"repository": {
"url": "wyatt-herkamp/vue3-simple-icons",
"type": "git"
},
"main": "./dist/vue3-simple-icons.umd.js",
"module": "./dist/vue3-simple-icons.mjs",
"exports": {
".": {
"import": "./dist/vue3-simple-icons.mjs",
"require": "./dist/vue3-simple-icons.umd.js",
"types": "./dist/types/index.d.ts"
}
},
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:icons && npm run build:dist && npm run build:type",
"build:icons": "npm run --prefix buildTools build",
"build:dist": "vite build",
"build:type": "vue-tsc --emitDeclarationOnly"
},
"license": "MIT",
"dependencies": {
"vue": "^3"
},
"devDependencies": {
"typescript": "^5.5.3",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/compiler-sfc": "^3.4.33",
"vite": "^5.3.4",
"vue": "^3.2.37",
"vue-tsc": "^2.0.28"
}
}