react-native-filament
Version:
A real-time physically based 3D rendering engine for React Native
179 lines (178 loc) • 4.84 kB
JSON
{
"name": "react-native-filament",
"version": "1.11.0",
"description": "A real-time physically based 3D rendering engine for React Native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"test": "src/test/RunTests",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"assets",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"typescript": "tsc --noEmit",
"check-all": "scripts/check-all.sh",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"clean": "rm -rf android/build example/android/build example/android/app/build example/ios/build lib",
"build": "bob build",
"prepare": "git submodule update --init --recursive && bun patch-filament && bob build",
"update-submodule": "git submodule update --remote --merge",
"patch-filament": "cd ../filament ; git apply ../package/filament_animator_feat.patch ; git apply ../package/filament_ios_simulator.patch ; git apply ../package/filament_depth_clip_mode.patch ; cd ../package",
"build-filament": "bun patch-filament && scripts/build-filament.sh",
"build-filament:release": "bun build-filament release",
"build-filament:debug": "bun build-filament debug",
"setup-filament-quick": "scripts/setup-filament-quick.sh",
"build-bullet3": "scripts/build-bullet3.sh",
"release": "bun build-filament:release && bun build-bullet3 && release-it && npm publish",
"codegen": "react-native codegen",
"prepack": "cp ../README.md ./README.md",
"postpack": "rm ./README.md"
},
"keywords": [
"react-native",
"filament",
"3d",
"rendering",
"engine",
"gltf",
"model",
"threejs",
"ios",
"android",
"physics",
"opengl",
"metal",
"vulkan"
],
"repository": {
"type": "git",
"url": "git+https://github.com/margelo/react-native-filament.git"
},
"author": "Marc Rousavy <me@mrousavy.com> (https://github.com/mrousavy)",
"contributors": [
{
"name": "Hanno Gödecke",
"url": "https://github.com/hannojg",
"email": "hanno@margelo.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/margelo/react-native-filament/issues"
},
"homepage": "https://margelo.github.io/react-native-filament",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@jamesacarr/eslint-formatter-github-actions": "^0.2.0",
"@react-native/eslint-config": "^0.73.1",
"@release-it/conventional-changelog": "^5.0.0",
"@types/react": "^19.2.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"react": "19.2.0",
"react-native": "0.83.1",
"react-native-builder-bob": "^0.40.17",
"react-native-worklets-core": "^1.6.2",
"release-it": "^15.0.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-worklets-core": ">=1.3.2"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"npm": {
"publish": false,
"versionArgs": [
"--workspaces-update=false"
]
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "✨ Features"
},
{
"type": "perf",
"section": "💨 Performance Improvements"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "chore(deps)",
"section": "🛠️ Dependency Upgrades"
},
{
"type": "docs",
"section": "📚 Documentation"
}
]
}
}
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.json"
}
]
]
},
"codegenConfig": {
"name": "rnfilament",
"type": "all",
"jsSrcsDir": "src/native/specs",
"android": {
"javaPackageName": "com.margelo.filament"
},
"ios": {
"componentProvider": {
"FilamentView": "FilamentComponent"
}
}
}
}