-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "@libshaun/mdi-vue",
"description": "Generates Vue components for the icons provided by Google's Material Icons library",
"author": "Shaun Simmons",
"homepage": "https://github.com/simshaun/mdi-vue",
"version": "5.0.8",
"license": "MIT",
"engines": {
"node": ">=14"
},
"scripts": {
"download": "node scripts/download.mjs",
"optimize": "node scripts/optimize.mjs",
"generate": "node scripts/generate.mjs",
"prepublishOnly": "node scripts/prepublish.mjs"
},
"peerDependencies": {
"vue": "^3.0.11"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@supercharge/promise-pool": "^3.2.0",
"execa": "^9.3.1",
"husky": "^9.1.4",
"lodash.difference": "^4.5.0",
"lodash.template": "^4.5.0",
"node-fetch": "^3.3.2",
"svgo": "^3.3.2"
},
"files": [
"*.js",
"*.d.ts",
"!git-hook_verify-package-version-bump.js",
"utils/createSvgIcon.js"
],
"prettier": {
"printWidth": 90,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}