@trustswap/react-native-wishlist
Version:
The fastest List component for React Native.
192 lines (191 loc) • 5.01 kB
JSON
{
"name": "@trustswap/react-native-wishlist",
"version": "0.1.0",
"private": false,
"description": "The fastest List component for React Native.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"!lib/typescript/example",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build",
"release": "release-it",
"example": "yarn --cwd example",
"bootstrap": "yarn example && yarn install && yarn example pods",
"format:prettier:check": "prettier \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\" --check",
"format:prettier:write": "yarn format:prettier:check --write",
"format:clang:check": "clang-format --dry-run --Werror --glob='{ios,android,cpp}/**/*.{h,cpp,m,mm}'",
"format:clang:write": "clang-format -i --glob='{ios,android,cpp}/**/*.{h,hpp,cpp,m,mm}'",
"format:spotless:check": "cd android && ./gradlew spotlessCheck",
"format:spotless:write": "cd android && ./gradlew spotlessApply",
"format:check": "yarn format:prettier:check && yarn format:clang:check && yarn format:spotless:check",
"format:write": "yarn format:prettier:write && yarn format:clang:write && yarn format:spotless:write"
},
"keywords": [
"react-native",
"react-native-wishlist",
"ios",
"android",
"fast",
"infinite",
"list",
"wishlist",
"margelo",
"flatlist",
"scroll",
"scrollview",
"flashlist",
"recyclerlist",
"recycling",
"recycled",
"virtualized"
],
"repository": "https://github.com/margelo/react-native-wishlist",
"author": {
"name": "Margelo",
"email": "hello@margelo.io",
"url": "http://margelo.io/"
},
"contributors": [
{
"name": "Marc Rousavy",
"email": "marc@margelo.io",
"url": "https://github.com/mrousavy"
},
{
"name": "Szymon Kapala",
"email": "szymon@margelo.io",
"url": "https://github.com/Szymon20000"
},
{
"name": "Janic Duplessis",
"email": "janic@margelo.io",
"url": "https://github.com/janicduplessis"
},
{
"name": "Terry Sahaidak",
"email": "terry@margelo.io",
"url": "https://github.com/terrysahaidak"
},
{
"name": "Christian Falch",
"email": "christian.falch@gmail.com",
"url": "https://github.com/chrfalch"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/margelo/react-native-wishlist/issues"
},
"homepage": "https://github.com/margelo/react-native-wishlist#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"denque": "^2.1.0"
},
"devDependencies": {
"@jamesacarr/eslint-formatter-github-actions": "^0.1.0",
"@react-native-community/eslint-config": "^3.0.2",
"@release-it/conventional-changelog": "^5.0.0",
"@types/jest": "^28.1.2",
"@types/react": "^18.2.15",
"clang-format": "^1.8.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "^18.2.0",
"react-native": "^0.72.3",
"react-native-builder-bob": "^0.23.2",
"react-native-gesture-handler": "^2.12.0",
"react-native-worklets-core": "^0.3.0",
"release-it": "^15.0.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*",
"react-native-worklets-core": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "wishlist",
"type": "all",
"jsSrcsDir": "./src/Specs",
"android": {
"javaPackageName": "com.wishlist"
}
}
}