forked from wyatt-herkamp/vue3-simple-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "@mkody/vue3-simple-icons",
"version": "14.2.0",
"homepage": "https://mkody.github.io/vue3-simple-icons",
"description": "Simple Icons as Vue components.",
"repository": {
"url": "git+https://github.com/mkody/vue3-simple-icons.git",
"type": "git"
},
"type": "module",
"main": "./dist/vue3-simple-icons.umd.cjs",
"module": "./dist/vue3-simple-icons.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/vue3-simple-icons.js",
"require": "./dist/vue3-simple-icons.umd.cjs"
}
},
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run build:icons && pnpm run build:dist && pnpm run build:type",
"build:icons": "pnpm run --prefix buildTools build",
"build:dist": "vite build",
"build:type": "vue-tsc --emitDeclarationOnly",
"install:deno": "cd buildTools/ && deno install --allow-scripts && deno install --allow-scripts --entrypoint ./src/main.ts"
},
"license": "MIT",
"dependencies": {
"vue": "^3"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"typescript": "5.7.3",
"vite": "^6.0.7",
"vue": "^3.2.37",
"vue-tsc": "^2.2.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9"
},
"packageManager": "[email protected]"
}