iconoir/packages/iconoir-react/package.json
2023-09-28 00:10:54 +02:00

56 lines
1.3 KiB
JSON

{
"name": "iconoir-react",
"version": "6.11.0",
"description": "React library for Iconoir icon set",
"keywords": [
"icons",
"svg",
"library",
"react"
],
"homepage": "https://iconoir.com",
"repository": {
"type": "git",
"url": "https://github.com/iconoir-icons/iconoir.git",
"directory": "packages/iconoir-react"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/iconoir"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"react-server": "./dist/esm/server/index.mjs",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dist": "rm -rf dist && tsc -p tsconfig.json && tsc -p tsconfig.esm.json && node scripts/fix-esm.js && rm -rf dist/server",
"prepublish": "npm run dist"
},
"devDependencies": {
"@types/react": "^18.2.22",
"react": "^18.2.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "^16.8.6 || ^17 || ^18"
}
}