-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.42 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "vite-plugin-favicons-inject",
"version": "2.2.0",
"description": "A Vite plugin for creating and injecting favicons during the application build!",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"test": "npm run build && cd test && vite build",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"files": [
"dist",
"LICENCE",
"package.json",
"package-lock.json",
"README.MD",
"rollup.config.js"
],
"keywords": [
"vite",
"favicons",
"inject",
"plugin"
],
"repository": {
"type": "git",
"url": "git://github.com/JohnPremKumar/vite-plugin-favicons-inject.git"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"@vitejs/plugin-vue": "^3.0.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"rollup": "^2.33.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.14",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-terser": "^7.0.2",
"vite": "^3.0.0",
"vite-plugin-static-copy": "^0.7.0",
"vue": "^3.2.37"
},
"author": "John Prem Kumar S",
"license": "MIT",
"dependencies": {
"favicons": "^7.0.0-beta.4"
}
}