react-native-nitro-gradient
Version:
High-performance gradient components for React Native built with Nitro
119 lines (118 loc) • 3.31 kB
JSON
{
"name": "react-native-nitro-gradient",
"version": "0.1.1",
"description": "High-performance gradient components for React Native built with Nitro",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"workspaces": [
"example"
],
"files": [
"src",
"react-native.config.js",
"lib",
"nitrogen",
"android/build.gradle",
"android/gradle.properties",
"android/fix-prefab.gradle",
"android/CMakeLists.txt",
"android/src",
"ios/**/*.h",
"ios/**/*.m",
"ios/**/*.mm",
"ios/**/*.cpp",
"ios/**/*.swift",
"app.plugin.js",
"nitro.json",
"*.podspec",
"README.md"
],
"scripts": {
"build": "rm -rf lib && bun typecheck && bob build",
"postinstall": "tsc || exit 0;",
"typecheck": "tsc --noEmit",
"clean": "rm -rf android/build node_modules/**/android/build lib",
"lint": "biome check . --fix",
"lint-ci": "biome check .",
"release": "release-it",
"typescript": "tsc",
"specs": "tsc && nitrogen --logLevel=\"debug\""
},
"keywords": [
"react-native",
"nitro",
"gradient",
"radial-gradient",
"sweep-gradient",
"linear-gradient"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Swami-Laxmikant/react-native-nitro-gradients.git"
},
"author": "Laxmikant Swami <lxmkntgswami@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swami-Laxmikant/react-native-nitro-gradients/issues"
},
"homepage": "https://github.com/Swami-Laxmikant/react-native-nitro-gradients#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"@types/react": "^19.0.6",
"nitrogen": "^0.29.4",
"react": "19.1.0",
"react-native": "0.81.0",
"react-native-nitro-modules": "^0.29.4",
"typescript": "5.8.3",
"react-native-reanimated": "4.1.3",
"react-native-worklets": "0.6.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-nitro-modules": "*",
"react-native-reanimated": "*",
"react-native-worklets": "*"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"semi": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"release-it": {
"npm": {
"publish": true
},
"git": false,
"github": {
"release": false
},
"hooks": {
"before:init": "bun typecheck && bun lint",
"after:bump": "bun run build"
}
}
}