-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
74 lines (74 loc) · 1.64 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
66
67
68
69
70
71
72
73
74
{
"name": "vite-plugin-svg-sprite",
"version": "0.6.2",
"description": "SVG sprite plugin for Vite",
"type": "module",
"exports": {
".": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
}
},
"./runtime/*.js": "./esm/runtime/*.js",
"./typings/*": {
"types": "./typings/*.d.ts"
}
},
"main": "cjs/index.js",
"types": "cjs/index.d.ts",
"files": [
"cjs",
"esm",
"typings",
"LICENSE"
],
"scripts": {
"lint": "eslint src",
"build": "shx rm -rf cjs esm && tsc && tsc -m commonjs --outDir cjs && shx cp ./package-cjs.json cjs/package.json",
"prepublishOnly": "npm run build"
},
"keywords": [
"vite",
"svg"
],
"author": "meowtec<[email protected]>",
"homepage": "https://github.com/meowtec/vite-plugin-svg-sprite",
"bugs": {
"url": "https://github.com/meowtec/vite-plugin-svg-sprite/issues"
},
"license": "MIT",
"devDependencies": {
"@types/micromatch": "^4.0.1",
"@types/node": "^20.4.2",
"@types/react": "^18.3.12",
"eslint": "^9.17.0",
"shx": "^0.3.4",
"typescript": "^5.1.6",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vue": "^3.5.13"
},
"dependencies": {
"@xmldom/xmldom": "^0.9.4",
"micromatch": "^4.0.2",
"svgo": "^3.0.2"
},
"peerDependencies": {
"react": "17 || 18 || 19",
"vite": "2 || 3 || 4 || 5 || 6",
"vue": "3"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
}
}
}