react-native-nitro-wallet
Version:
A React Native package for interacting with Apple or Google Wallet
144 lines (143 loc) • 3.2 kB
JSON
{
"name": "react-native-nitro-wallet",
"version": "0.1.7",
"description": "A React Native package for interacting with Apple or Google Wallet",
"main": "./lib/commonjs/index.js",
"module": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"scripts": {
"typecheck": "tsc --noEmit",
"clean": "git clean -dfX",
"release": "release-it",
"build": "npm run typecheck && bob build",
"codegen": "nitro-codegen --logLevel=\"debug\" && npm run build && node post-script.js",
"prepare": "husky install"
},
"keywords": [
"react-native",
"apple-wallet",
"google-wallet",
"nitro-modules",
"nitro-wallet",
"passkit",
"pass"
],
"files": [
"src",
"react-native.config.js",
"lib",
"nitrogen",
"cpp",
"android/build.gradle",
"android/gradle.properties",
"android/CMakeLists.txt",
"android/src",
"ios/**/*.h",
"ios/**/*.m",
"ios/**/*.mm",
"ios/**/*.cpp",
"ios/**/*.swift",
"app.plugin.js",
"*.podspec",
"README.md"
],
"workspaces": [
"example"
],
"repository": "https://github.com/niallbarber/react-native-nitro-wallet.git",
"author": "Niall Barber",
"license": "MIT",
"bugs": "https://github.com/niallbarber/react-native-nitro-wallet/issues",
"homepage": "https://github.com/niallbarber/react-native-nitro-wallet#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"provenance": true,
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@release-it/bumper": "^7.0.1",
"@release-it/conventional-changelog": "^10.0.0",
"@types/jest": "^29.5.12",
"@types/react": "^19.0.10",
"husky": "^9.1.7",
"nitro-codegen": "0.25.2",
"react": "19.0.0",
"react-native": "0.79.2",
"react-native-builder-bob": "^0.37.0",
"react-native-nitro-modules": "0.25.2",
"release-it": "^19.0.2",
"typescript": "5.0.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-nitro-modules": "*"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.json"
}
]
]
},
"release-it": {
"npm": {
"publish": true
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"hooks": {
"before:init": "bun typecheck",
"after:bump": "bun run build"
},
"plugins": {
"@release-it/bumper": {},
"@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"
}
]
},
"infile": "CHANGELOG.md"
}
}
}
}