waku-react-native/package.json

165 lines
3.7 KiB
JSON
Raw Normal View History

2022-05-10 23:42:15 +00:00
{
"name": "@waku/react-native",
"version": "0.0.4",
2022-05-10 23:42:15 +00:00
"description": "Waku React Native",
2022-05-12 16:20:12 +00:00
"author": "Status Research & Development GMBH",
"authors": [
{
"name": "Richard Ramos",
"email": "info@richardramos.me",
"homepage": "https://github.com/richard-ramos"
}
],
2022-05-10 23:42:15 +00:00
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"waku-react-native.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"check-gowaku": "./download-gowaku.sh",
"download-gowaku": "./download-gowaku.sh --force",
2022-05-10 23:42:15 +00:00
"prepare": "bob build",
"prerelease": "yarn check-gowaku",
2022-05-10 23:42:15 +00:00
"release": "release-it",
"example": "yarn --cwd example",
"prepods": "yarn check-gowaku",
2022-05-10 23:42:15 +00:00
"pods": "cd example && pod-install --quiet",
"bootstrap": "yarn check-gowaku && yarn example && yarn && yarn pods",
"prepublish": "yarn check-gowaku"
2022-05-10 23:42:15 +00:00
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/status-im/waku-react-native",
"license": "MIT",
"bugs": {
"url": "https://github.com/status-im/waku-react-native/issues"
},
"homepage": "https://github.com/status-im/waku-react-native#readme",
"publishConfig": {
2022-07-08 13:53:30 +00:00
"access": "public",
2022-05-10 23:42:15 +00:00
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.37",
"@types/react-native": "0.66.8",
2022-05-12 16:20:12 +00:00
"@types/base-64": "^1.0.0",
2022-05-10 23:42:15 +00:00
"commitlint": "^11.0.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^6.0.0",
"jest": "^27.4.3",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "17.0.2",
"react-native": "0.66.3",
"react-native-builder-bob": "^0.18.2",
"release-it": "^14.2.2",
"typescript": "^4.5.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"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"
}
}
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"dependencies": {
"base-64": "^1.0.0"
2022-05-10 23:42:15 +00:00
}
}