-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
42 lines (42 loc) · 960 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
39
40
41
42
{
"name": "vite-svg-loader",
"version": "5.1.0",
"description": "Vite plugin to load SVG files as Vue components",
"keywords": [
"vite-plugin",
"vite",
"vue",
"svg"
],
"main": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"debug": "^4.3.4",
"svgo": "^3.0.2"
},
"devDependencies": {
"cypress": "^8.6.0",
"standard": "^16.0.3"
},
"peerDependencies": {
"vue": ">=3.2.13"
},
"scripts": {
"lint": "standard --fix",
"cypress": "cypress run",
"test:preview": "cd ./test-app && npm run preview -- --host"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpkleemans/vite-svg-loader.git"
},
"author": {
"name": "Jan-Paul Kleemans",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jpkleemans/vite-svg-loader/issues"
},
"homepage": "https://github.com/jpkleemans/vite-svg-loader#readme"
}