-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "vue3-unicorn-log",
"version": "1.0.0",
"description": "A magical 🦄 plugin to make coloring the console output easier and more flexible.",
"private": false,
"main": "dist/vue3-unicorn-log.js",
"module": "dist/vue3-unicorn-log.es.js",
"types": "dist/types/index.d.ts",
"scripts": {
"dev": "vite",
"watch": "pnpm dev",
"bundle": "rollup -c --bundleConfigAsCjs",
"build": "vite build",
"predeploy": "npm run build",
"deploy": "gh-pages -d docs",
"prepublishOnly": "npm run bundle",
"lint": "eslint src/**/*.{ts,vue} --max-warnings 4"
},
"lint-staged": {
"src/**/*.{js,ts,vue}": [
"npm run lint"
]
},
"author": "WebDevNerdStuff & Bunnies... lots and lots of bunnies! <webdevnerdstuff@gmail.com> (https://webdevnerdstuff.com)",
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/WebDevNerdStuff"
},
{
"type": "individual",
"url": "https://bit.ly/wdns-paypal-veet-plugin"
}
],
"license": "MIT",
"files": [
"dist/*",
"LICENSE.md",
"README.md"
],
"repository": "https://github.com/webdevnerdstuff/vue3-unicorn-log",
"bugs": {
"url": "https://github.com/webdevnerdstuff/vue3-unicorn-log/issues"
},
"homepage": "https://github.com/webdevnerdstuff/vue3-unicorn-log",
"keywords": [
"vue3-unicorn-log",
"vue-unicorn-log",
"unicorn-log",
"vue",
"vue3",
"plugin",
"console",
"devtools",
"unicorn",
"logging",
"log",
"javascript",
"magical",
"webdevnerdstuff",
"wdns"
],
"peerDependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.2.47",
"@vue/eslint-config-typescript": "^11.0.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.11.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"postcss": "^8.4.22",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.7",
"prism-themes": "^1.9.0",
"prismjs": "^1.29.0",
"rollup": "^3.20.3",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.62.0",
"stylelint": "^15.5.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^4.6.0",
"typescript": "^5.0.4",
"ua-parser-js": "^1.0.35",
"vite": "^4.2.1",
"vite-plugin-babel": "^1.1.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^4.3.0",
"vue": "^3.2.47",
"vue-tsc": "^1.2.0"
}
}