forked from robcresswell/vue-material-design-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "@mkody/vue-material-design-icons",
"version": "5.0.10",
"author": "Rob Cresswell <[email protected]>",
"contributors": [
{
"name": "André Kody Fernandes",
"email": "[email protected]",
"url": "https://github.com/mkody"
}
],
"license": "MIT",
"description": "A collection of material design icons as Vue single file components",
"repository": {
"type": "git",
"url": "git+https://github.com/mkody/vue-material-design-icons.git"
},
"keywords": [
"vue",
"vue3",
"material design icons",
"mdi",
"icons",
"material",
"icon",
"svg",
"vue.js",
"material design"
],
"devDependencies": {
"@babel/preset-env": "^7.23.7",
"@mdi/js": "7.4.47",
"@types/node": "^20.10.6",
"@vue/test-utils": "^2.4.3",
"@vue/vue3-jest": "^29.2.6",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-serializer-vue": "^3.1.0",
"p-map": "^7.0.1",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vue": "^3.4.3"
},
"homepage": "https://github.com/mkody/vue-material-design-icons",
"bugs": {
"url": "https://github.com/mkody/vue-material-design-icons/issues"
},
"scripts": {
"all": "pnpm format && pnpm build && pnpm test",
"prebuild": "rimraf dist/",
"build": "tsx ./build.ts",
"postbuild": "copyfiles styles.css package.json README.md dist/",
"format": "prettier --write **/*.{js,ts}",
"test": "jest"
},
"type": "module",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"packageManager": "[email protected]"
}