UNPKG

react-native-wishlist

Version:
185 lines (184 loc) 4.51 kB
{ "name": "react-native-wishlist", "version": "0.0.1-alpha.1", "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}\"", "prettier": "prettier \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\" --check", "prepare": "bob build", "release": "release-it", "example": "yarn --cwd example", "bootstrap": "yarn example && yarn install && yarn example pods", "clang-format": "clang-format -i --glob='{ios,android,cpp}/**/*.{h,cpp,m,mm}'" }, "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/" }, "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.0.21", "@types/react-native": "^0.70.6", "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.1.0", "react-native": "0.70.3", "react-native-gesture-handler": "^2.8.0", "react-native-builder-bob": "^0.20.0", "react-native-worklets": "janicduplessis/react-native-worklets#react-native-worklets-v0.1.5-gitpkg", "release-it": "^15.0.0", "typescript": "^4.5.2" }, "resolutions": { "@types/react": "^18.0.21" }, "peerDependencies": { "react": "*", "react-native": "*", "react-naitve-gesture-handler": "*", "react-native-worklets": "*" }, "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": "components", "jsSrcsDir": "./src/NativeViews" } }