UNPKG

2.04 kBJSONView Raw
1{
2 "name": "vue-svg-inline-plugin",
3 "version": "2.2.3",
4 "description": "Vue plugin for inline replacement of SVG images with actual content of SVG files.",
5 "main": "src/index.js",
6 "types": "src/index.d.ts",
7 "unpkg": "dist/vue-svg-inline-plugin.min.js",
8 "jsdelivr": "dist/vue-svg-inline-plugin.min.js",
9 "files": [
10 "index.js",
11 "dist/*.js",
12 "src/*.{js,d.ts}"
13 ],
14 "directories": {
15 "example": "examples"
16 },
17 "scripts": {
18 "build": "npm run remove && npm run build:modern && npm run build:default",
19 "build:default": "npm run remove:default && npx cross-env IMPORT_POLYFILLS=1 npm run webpack",
20 "build:modern": "npm run remove:modern && npm run webpack",
21 "remove": "npm run remove:default && npm run remove:modern",
22 "remove:default": "npx rimraf dist/vue-svg-inline-plugin.min.js",
23 "remove:modern": "npx rimraf dist/vue-svg-inline-plugin-modern.min.js",
24 "webpack": "npx webpack --progress --color",
25 "test": "echo \"Error: no test specified\" && exit 1"
26 },
27 "repository": {
28 "type": "git",
29 "url": "git+https://github.com/oliverfindl/vue-svg-inline-plugin.git"
30 },
31 "keywords": [
32 "vue",
33 "vuejs",
34 "plugin",
35 "vue-plugin",
36 "svg",
37 "inline",
38 "sprites",
39 "symbols",
40 "vue-svg-inline-plugin"
41 ],
42 "author": "Oliver Findl",
43 "license": "MIT",
44 "bugs": {
45 "url": "https://github.com/oliverfindl/vue-svg-inline-plugin/issues"
46 },
47 "homepage": "https://github.com/oliverfindl/vue-svg-inline-plugin#readme",
48 "dependencies": {
49 "core-js": "^3.25.2",
50 "intersection-observer": "^0.12.2",
51 "whatwg-fetch": "^3.6.2"
52 },
53 "devDependencies": {
54 "@babel/core": "^7.19.1",
55 "@babel/eslint-parser": "^7.19.1",
56 "@babel/preset-env": "^7.19.1",
57 "babel-loader": "^8.2.5",
58 "babel-plugin-remove-template-literals-whitespace": "^1.0.4",
59 "cross-env": "^7.0.3",
60 "eslint": "^8.23.1",
61 "eslint-plugin-vue": "^9.5.1",
62 "eslint-webpack-plugin": "^3.2.0",
63 "rimraf": "^3.0.2",
64 "terser-webpack-plugin": "^5.3.6",
65 "webpack": "^5.74.0",
66 "webpack-bundle-analyzer": "^4.6.1",
67 "webpack-cli": "^4.10.0"
68 }
69}