-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·80 lines (80 loc) · 1.71 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "vite-plugin-magical-svg",
"version": "1.10.3",
"description": "An all-in-one Vite plugin that magically makes working with SVGs and bundling them a breeze",
"keywords": [
"vite-plugin",
"spritesheet",
"sprite",
"svgr",
"svg"
],
"bugs": "https://github.com/cyyynthia/vite-plugin-magical-svg/issues",
"license": "BSD-3-Clause",
"author": "Cynthia Rey <cynthia@cynthia.dev>",
"repository": "github:cyyynthia/vite-plugin-magical-svg",
"funding": "https://github.com/sponsors/cyyynthia",
"files": [
"README.md",
"LICENSE",
"dist",
"runtime"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./runtime/*.js": "./runtime/*.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"test": "vitest",
"update-gha": "pin-github-action .github/workflows"
},
"dependencies": {
"magic-string": "^0.30.21",
"svgo": "^4.0.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@tsconfig/node-lts": "^24.0.0",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^26.1.1",
"@types/xml2js": "^0.4.14",
"pin-github-action": "^3.5.1",
"rolldown": "^1.2.0",
"rollup": "^4.62.2",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"peerDependencies": {
"vite": ">= 3.0.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.17.0",
"onFail": "error"
},
"runtime": {
"name": "node",
"version": "^26",
"onFail": "warn"
}
},
"engines": {
"node": ">=14.18.0"
}
}