UNPKG

brick-module

Version:

Better React Native native module development

85 lines 1.88 kB
{ "name": "brick-module", "version": "0.5.2", "description": "Better React Native native module development", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "default": "./dist/index.js" }, "./podfile_helper.rb": "./podfile_helper.rb", "./package.json": "./package.json" }, "files": [ "dist/", "ios", "android", "react-native.config.js", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*", "src/", "bin/", "BrickModule.podspec", "podfile_helper.rb" ], "keywords": [ "react-native", "native-module", "turbomodule", "ios", "swift", "jsi", "codegen", "brick-module" ], "license": "Apache-2.0", "author": "Toss <opensource@toss.im>", "repository": { "type": "git", "url": "https://github.com/toss/brick.git" }, "bugs": { "url": "https://github.com/toss/brick/issues" }, "homepage": "https://github.com/toss/brick#readme", "bin": { "brick-codegen": "./bin/brick-codegen.js" }, "dependencies": { "brick-codegen": "0.5.2" }, "peerDependencies": { "react": ">=18.2.0", "react-native": ">=0.70.0" }, "devDependencies": { "@types/react": "^18.2.0", "@types/react-native": "^0.72.0", "tsdown": "^0.14.2", "typescript": "^5.9.2" }, "codegenConfig": { "name": "BrickModuleSpec", "type": "modules", "jsSrcsDir": "src", "includesGeneratedCode": true }, "scripts": { "build": "tsdown", "lint": "biome lint --write .", "format": "biome format --write .", "typecheck": "tsc --noEmit" } }