forked from jpkleemans/vite-svg-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 965 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
{
"name": "vite-svg-loader",
"version": "4.0.0",
"description": "Vite plugin to load SVG files as Vue components",
"keywords": [
"vite",
"vue",
"svg"
],
"main": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"@vue/compiler-sfc": "^3.2.20",
"svgo": "^3.0.2"
},
"devDependencies": {
"cypress": "^8.6.0",
"standard": "^16.0.3"
},
"scripts": {
"lint": "standard --fix",
"cypress": "cypress run",
"example:build": "cd ./examples/vue && npm ci && npm run build",
"example:serve": "cd ./examples/vue && npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpkleemans/vite-svg-loader.git"
},
"author": {
"name": "Jan-Paul Kleemans",
"email": "jpkleemans@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jpkleemans/vite-svg-loader/issues"
},
"homepage": "https://github.com/jpkleemans/vite-svg-loader#readme"
}