Files
breez-sdk-liquid/packages/react-native/package.json
ok300 6589a8799b Rename workspace members (subfolders) (#149)
* Rename ls-sdk-bindings workspace member

* Rename ls-sdk-core workspace member

* Rename ls-sdk-react-native
2024-05-02 18:22:32 +00:00

121 lines
2.8 KiB
JSON

{
"name": "@breeztech/react-native-breez-liquid-sdk",
"version": "0.0.1",
"description": "React Native Breez Liquid SDK",
"repository": "https://github.com/breez/breez-liquid-sdk",
"author": "Breez <contact@breez.technology> (https://github.com/breez)",
"homepage": "https://breez.technology",
"license": "MIT",
"bugs": {
"url": "https://github.com/breez/breez-liquid-sdk/issues"
},
"files": [
"src",
"lib",
"android",
"ios",
"breez_liquid_sdk.podspec",
"!PUBLISHING.md",
"!android/.gradle",
"!android/.idea",
"!android/build",
"!example",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build",
"release": "release-it",
"example": "yarn --cwd example",
"pods": "cd example/ios && pod install",
"bootstrap": "rm -rf node_modules && rm -rf example/node_modules && yarn && yarn example && yarn pods"
},
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.19",
"@types/react-native": "0.62.13",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.6.3",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "18.1.0",
"react-native": "0.70.15",
"react-native-builder-bob": "^0.18.0",
"typescript": "^4.1.3"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "lf",
"printWidth": 150,
"semi": false,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"endOfLine": "lf",
"printWidth": 150,
"semi": false,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}