UNPKG

@darrench3140/react-native-sprite-sheet

Version:

An up to date react native sprite sheet for use in animations.

172 lines (171 loc) 4.1 kB
{ "name": "@darrench3140/react-native-sprite-sheet", "version": "1.1.0", "description": "An up to date react native sprite sheet for use in animations.", "source": "./src/index.tsx", "main": "./lib/module/index.js", "module": "./lib/module/index.js", "types": "./lib/typescript/src/index.d.ts", "exports": { ".": { "source": "./src/index.tsx", "types": "./lib/typescript/src/index.d.ts", "default": "./lib/module/index.js" }, "./package.json": "./package.json" }, "scripts": { "example": "yarn workspace react-native-sprite-sheet-example", "test": "jest", "typecheck": "tsc --noEmit", "lint": "eslint \"**/*.{js,ts,tsx}\"", "clean": "del-cli lib", "prepare": "bob build", "release": "release-it" }, "files": [ "src", "lib", "android", "ios", "cpp", "*.podspec", "react-native.config.js", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "keywords": [ "react-native", "ios", "android", "spritesheet", "sprite", "animation" ], "repository": { "type": "git", "url": "git+https://github.com/darrench3140/react-native-sprite-sheet.git" }, "author": "darrench3140 <darrench3140@gmail.com> (https://github.com/darrench3140)", "license": "MIT", "bugs": { "url": "https://github.com/darrench3140/react-native-sprite-sheet/issues" }, "homepage": "https://github.com/darrench3140/react-native-sprite-sheet#readme", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "devDependencies": { "@commitlint/config-conventional": "^19.8.1", "@eslint/compat": "^1.3.1", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.30.0", "@evilmartians/lefthook": "^1.11.14", "@react-native/babel-preset": "^0.80.1", "@react-native/eslint-config": "^0.80.1", "@release-it/conventional-changelog": "^10.0.1", "@types/jest": "^30.0.0", "@types/react": "^19.1.8", "commitlint": "^19.8.1", "del-cli": "^6.0.0", "eslint": "^9.30.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.5.1", "expo-image": "^2.3.1", "jest": "^30.0.3", "prettier": "^3.6.2", "react": "19.0.0", "react-native": "0.79.4", "react-native-builder-bob": "^0.40.12", "react-native-reanimated": "~3.17.4", "release-it": "^19.0.3", "typescript": "^5.8.3" }, "resolutions": { "@types/react": "^18.2.44" }, "peerDependencies": { "expo-image": "*", "react": "*", "react-native": "*", "react-native-reanimated": "*" }, "workspaces": [ "example" ], "packageManager": "yarn@3.6.1", "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": true }, "plugins": { "@release-it/conventional-changelog": { "preset": "angular" } } }, "prettier": { "arrowParens": "avoid", "quoteProps": "consistent", "singleQuote": true, "jsxSingleQuote": true, "bracketSameLine": true, "bracketSpacing": true, "semi": false, "tabWidth": 2, "trailingComma": "es5", "useTabs": false, "printWidth": 150 }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json" } ] ] }, "create-react-native-library": { "languages": "js", "type": "library", "version": "0.51.1" } }