iconoir/packages/iconoir-react/package.json
2023-04-12 17:35:11 +00:00

53 lines
1.2 KiB
JSON

{
"name": "iconoir-react",
"version": "6.6.0",
"description": "React library for Iconoir icon set",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.mjs",
"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"
}
},
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucaburgio/iconoir.git"
},
"keywords": [
"icons",
"svg",
"library",
"react"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lucaburgio/iconoir/issues"
},
"sideEffects": false,
"homepage": "https://iconoir.com",
"peerDependencies": {
"react": "^16.8.6 || ^17 || ^18"
},
"devDependencies": {
"@types/react": "^17.0.29",
"react": "^17.0.2",
"typescript": "^4.4.4"
}
}