-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.67 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
{
"name": "@simonmeusel/react-ionicons",
"version": "0.4.0",
"description": "npm package exporting Ionicons v4 SVGs as react components",
"scripts": {
"build": "shx rm -rf dist && ts-node src/index.ts && webpack --mode production",
"prepack": "npm run build && shx cp dist/javascript/* . && shx cp dist/typescript/*.d.ts . && cp node_modules/ionicons/LICENSE LICENSE-IONICONS",
"postpublish": "shx mv webpack.config.js webpack.config && shx rm *.{js,map,d.ts} && shx mv webpack.config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonmeusel/react-ionicons.git"
},
"keywords": [
"typescript",
"react",
"ionicons",
"component"
],
"author": "Simon Meusel",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonmeusel/react-ionicons/issues"
},
"homepage": "https://github.com/simonmeusel/react-ionicons#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.9",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"ionicons": "^4.6.3",
"lodash.camelcase": "^4.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"shx": "^0.3.3",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
},
"peerDependencies": {
"react": ">17.0.0",
"react-dom": ">17.0.0"
}
}