@react-native-vector-icons/common
Version:
Customizable Icons for React Native with support for image source and full styling.
147 lines • 3.16 kB
JSON
{
"name": "@react-native-vector-icons/common",
"version": "12.4.0",
"description": "Customizable Icons for React Native with support for image source and full styling.",
"source": "./src/index.ts",
"main": "./lib/commonjs/index.js",
"module": "./lib/module/index.js",
"types": "./lib/typescript/commonjs/src/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./lib/typescript/module/src/index.d.ts",
"default": "./lib/module/index.js"
},
"require": {
"types": "./lib/typescript/commonjs/src/index.d.ts",
"default": "./lib/commonjs/index.js"
}
}
},
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"bin": {
"rnvi-update-plist": "lib/commonjs/scripts/updatePlist.js"
},
"keywords": [
"react-native",
"ios",
"android",
"osx",
"windows",
"macos",
"react-component",
"react-native-component",
"react",
"mobile",
"ui",
"icon",
"icons",
"vector",
"retina",
"font"
],
"repository": {
"type": "git",
"url": "https://github.com/oblador/react-native-vector-icons.git",
"directory": "packages/common"
},
"author": {
"name": "Joel Arvidsson",
"email": "joel@oblador.se"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/oblador/react-native-vector-icons/issues"
},
"homepage": "https://github.com/oblador/react-native-vector-icons",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"find-up": "^7.0.0",
"picocolors": "^1.1.1",
"plist": "^3.1.0"
},
"devDependencies": {
"@types/plist": "^3.0.5",
"@types/react": "^19.0.12",
"del-cli": "^6.0.0",
"onchange": "^7.1.0",
"react-native-builder-bob": "^0.35.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"@react-native-vector-icons/get-image": "^12.3.0"
},
"peerDependenciesMeta": {
"@react-native-vector-icons/get-image": {
"optional": true
}
},
"engines": {
"node": ">=20.19.0 <21.0.0 || >=22.0.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"esm": true
}
],
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json",
"esm": true
}
]
]
},
"create-react-native-library": {
"type": "library",
"version": "0.41.2"
},
"nx": {
"targets": {
"build": {
"dependsOn": [
"@react-native-vector-icons/get-image:build"
]
}
}
},
"scripts": {
"clean": "del-cli lib",
"watch": "onchange 'src/**' --initial -- pnpm run prepare"
}
}