react-native-animateable-text
Version:
A fork of React Native's `<Text/> component that supports Reanimated Shared Values as text!
160 lines (159 loc) • 3.85 kB
JSON
{
"name": "react-native-animateable-text",
"version": "0.17.1",
"description": "A fork of React Native's `<Text/> component that supports Reanimated Shared Values as text!",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-animateable-text.podspec",
"!lib/typescript/example",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"react-native.config.js"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build",
"release": "dotenv release-it --",
"example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "yarn example && yarn && yarn pods"
},
"keywords": [
"react-native",
"ios",
"android",
"reanimated",
"shared values",
"animated",
"text"
],
"repository": "https://github.com/axelra-ag/react-native-animateable-text",
"author": "Jonny Burger <hi@jonny.io> (https://github.com/JonnyBurger)",
"license": "MIT",
"bugs": {
"url": "https://github.com/axelra-ag/react-native-animateable-text/issues"
},
"homepage": "https://github.com/axelra-ag/react-native-animateable-text#readme",
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@miblanchard/react-native-slider": "^2.6.0",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^5.0.0",
"@types/react": "^18.3.11",
"commitlint": "^8.3.5",
"dotenv-cli": "^7.2.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"react-native": "0.76.0",
"react-native-builder-bob": "^0.20.0",
"react-native-reanimated": "~3.16.1",
"release-it": "^15.0.0",
"typescript": "^5.0.2"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.74.0",
"react-native-reanimated": ">=3"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"eslintConfig": {
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"dependencies": {
"deprecated-react-native-prop-types": "^2.3.0",
"nullthrows": "^1.1.1"
},
"codegenConfig": {
"name": "JBAnimatedTextCodegen",
"jsSrcsDir": "./src/specs",
"type": "components",
"ios": {
"componentProvider": {
"JBAnimatedText": "JBAnimatedTextComponentView"
}
}
}
}