-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 928 Bytes
/
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
{
"name": "vite-plugin-svmg",
"type": "module",
"version": "0.0.2",
"description": "a vite plugin replaces img tags with svg content when the src attribute points to an SVG file and suppor theme color switch",
"author": "yeling5 <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/ylw5/vite-plugin-svmg",
"repository": {
"type": "git",
"url": "https://github.com/ylw5/vite-plugin-svmg"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup"
},
"dependencies": {
"@types/node": "^18.11.18"
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.0",
"eslint": "^8.31.0",
"tsup": "^6.5.0",
"typescript": "^4.9.3",
"vite": "^4.0.0"
}
}