-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "@cocobugs/react-material-icons",
"version": "1.0.4",
"description": "An expression of all material icons in React components without the need for the MUI baggage",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"generator": "cd ./scripts && tsc && cd .. && node ./scripts/generateIconComponents.js && rm ./scripts/generateIconComponents.js",
"build": "rm ./src/components/* ; npm run generator && rm -R ./dist ; tsc && vite build"
},
"keywords": [
"google icons",
"material icons",
"react icons"
],
"author": "CocoIsBuggy",
"repository": {
"type": "git",
"url": "https://github.com/CocoisBuggy/react-material-icons.git"
},
"bugs": {
"url": "https://github.com/CocoisBuggy/react-material-icons/issues"
},
"homepage": "https://github.com/CocoisBuggy/react-material-icons",
"license": "ISC",
"devDependencies": {
"@types/number-to-words": "^1.2.3",
"@types/react": "^18.2.45",
"number-to-words": "^1.2.4",
"prettier": "^3.1.1",
"react": "^17.0.0 || ^18.2.0",
"react-dom": "^17.0.0 || ^18.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.7.0"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.2.0",
"react-dom": "^17.0.0 || ^18.2.0"
}
}