-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.29 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
58
59
60
61
62
63
64
65
{
"name": "@tangllty/vite-plugin-svg",
"version": "v1.0.5",
"description": "A lightweight vite plugin for SVG sprite.",
"author": {
"name": "Tang",
"url": "https://github.com/tangllty/vite-plugin-svg"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/tangllty/vite-plugin-svg"
},
"scripts": {
"play": "vite playground",
"build": "unbuild",
"release": "pnpm publish --access public"
},
"keywords": [
"vite",
"vite-plugin",
"svg",
"icon",
"svgo",
"icons",
"symbol",
"symbols",
"sprite",
"plugin",
"rollup",
"typescript",
"tang",
"tangllty",
"vite-plugin-svg"
],
"dependencies": {
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"htmlparser2": "^9.1.0",
"node-html-parser": "^6.1.12",
"rollup": "^4.12.0",
"svgo": "^3.2.0",
"vite": "^5.1.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
}
}