This repository was archived by the owner on Jan 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.28 KB
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": "@dnlsndr/vue-phosphor-icons",
"version": "3.1.2",
"description": "A clean and friendly icon family for Vue, too!",
"license": "MIT",
"repository": "dnlsndr/vue-phosphor-icons",
"sideEffects": false,
"types": "dist/vue-phosphor-icons.d.ts",
"main": "dist/vue-phosphor-icons.mjs",
"browser": "dist/vue-phosphor-icons.mjs",
"module": "dist/vue-phosphor-icons.mjs",
"exports": {
".": {
"import": "./dist/vue-phosphor-icons.mjs"
}
},
"files": [
"dist"
],
"keywords": [
"vue",
"icons",
"svg",
"phosphor",
"design",
"interface",
"UI",
"UX"
],
"scripts": {
"serve": "vite",
"build": "vite build && vue-tsc",
"compile": "vue-tsc --emitDeclarationOnly",
"analyze": "cross-env ANALYZE=true vite build",
"assemble": "node bin/assemble.js",
"format": "prettier --write ."
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.23.7",
"@types/node": "20.10.6",
"@vue/compiler-sfc": "3.4.3",
"@vitejs/plugin-vue": "5.0.2",
"cross-env": "7.0.3",
"rollup-plugin-visualizer": "5.12.0",
"typescript": "5.3.3",
"vite": "5.0.10",
"vue": "3.4.3",
"vue-tsc": "1.8.27"
},
"peerDependencies": {
"vue": "^3.2.39"
},
"engines": {
"node": ">=14"
}
}