iconoir/packages/iconoir-react/package.json

53 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "iconoir-react",
2023-02-22 23:54:19 +01:00
"version": "6.3.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.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"
},
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"
}
2023-01-29 20:54:07 +01:00
}