iconoir/packages/iconoir-react/package.json

39 lines
848 B
JSON
Raw Normal View History

{
"name": "iconoir-react",
2022-06-08 11:00:52 +02:00
"version": "5.0.0",
"description": "React library for Iconoir icon set",
2021-05-25 09:36:34 +02:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"dist": "tsc -p tsconfig.json && tsc -p tsconfig.esm.json",
"prepublish": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucaburgio/iconoir.git"
},
2021-05-22 08:31:20 +02:00
"keywords": [
"icons",
"svg",
"library",
"react"
2021-05-22 08:31:20 +02:00
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lucaburgio/iconoir/issues"
},
2021-06-29 15:41:41 +02:00
"sideEffects": false,
"homepage": "https://iconoir.com",
"peerDependencies": {
2022-04-24 02:25:03 +02:00
"react": "^16.8.6 || ^17 || ^18"
},
"devDependencies": {
"@types/react": "^17.0.29",
"react": "^17.0.2",
"typescript": "^4.4.4"
}
2022-05-21 13:59:10 +02:00
}