1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
react-native-pushy/package.json

79 lines
3.4 KiB
JSON
Raw Normal View History

2016-02-23 19:55:02 +08:00
{
2016-02-23 19:03:37 +08:00
"name": "react-native-update",
2024-08-06 13:13:05 +08:00
"version": "10.11.6",
2016-02-23 19:03:37 +08:00
"description": "react-native hot update",
2024-04-22 23:15:29 +08:00
"main": "src/index",
2016-02-23 19:55:02 +08:00
"scripts": {
2024-03-07 22:11:44 +08:00
"prepack": "yarn submodule && yarn lint",
"lint": "eslint \"src/*.@(ts|tsx|js|jsx)\" && tsc --noEmit",
2021-04-09 19:37:56 +08:00
"submodule": "git submodule update --init --recursive",
2016-02-24 01:10:49 +08:00
"test": "echo \"Error: no test specified\" && exit 1",
2023-03-15 23:27:25 +08:00
"build-lib": "yarn submodule && $ANDROID_HOME/ndk/20.1.5948944/ndk-build NDK_PROJECT_PATH=android APP_BUILD_SCRIPT=android/jni/Android.mk NDK_APPLICATION_MK=android/jni/Application.mk NDK_LIBS_OUT=android/lib",
2023-03-18 14:43:17 +08:00
"build:ios-debug": "cd Example/testHotUpdate && yarn && detox build --configuration ios.sim.debug",
2023-03-16 10:03:31 +08:00
"build:ios-release": "cd Example/testHotUpdate && yarn && detox build --configuration ios.sim.release",
2023-03-18 14:43:17 +08:00
"test:ios-debug": "cd Example/testHotUpdate && detox test --configuration ios.sim.debug",
2023-04-02 23:05:16 +08:00
"test:ios-release": "cd Example/testHotUpdate && yarn detox test --configuration ios.sim.release",
2023-03-18 14:43:17 +08:00
"build:android-debug": "cd Example/testHotUpdate && yarn && detox build --configuration android.emu.debug",
2023-03-16 13:45:26 +08:00
"build:android-release": "cd Example/testHotUpdate && yarn && detox build --configuration android.emu.release",
2023-04-02 23:05:16 +08:00
"test:android-release": "cd Example/testHotUpdate && yarn detox test --configuration android.emu.release --headless --record-logs all",
2023-03-31 21:47:22 +08:00
"test:android-debug": "cd Example/testHotUpdate && detox test --configuration android.emu.debug --headless --record-logs all",
2023-03-15 23:27:25 +08:00
"e2e:ios": "npm run build:ios-release && npm run test:ios-release",
"e2e:android": "npm run build:android-release && npm run test:android-release",
"tests:emulator:prepare": "cd .github/workflows/scripts/functions && yarn && yarn build",
"tests:emulator:start-ci": "yarn tests:emulator:prepare && cd ./.github/workflows/scripts && ./start-firebase-emulator.sh",
2023-03-16 10:29:08 +08:00
"tests:packager:jet-ci": "cd Example/testHotUpdate && cross-env TMPDIR=$HOME/.metro REACT_DEBUGGER=\"echo nope\" node_modules/.bin/react-native start --no-interactive",
2023-03-16 10:45:19 +08:00
"tests:ios:pod:install": "cd Example/testHotUpdate && yarn && yarn pod-install"
2016-02-23 19:55:02 +08:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactnativecn/react-native-pushy.git"
},
2018-07-20 17:01:12 +08:00
"keywords": [
"react-native",
"ios",
"android",
"update"
],
2016-02-23 19:55:02 +08:00
"author": "reactnativecn",
2021-10-04 00:41:04 +08:00
"license": "MIT",
2016-02-23 19:55:02 +08:00
"bugs": {
"url": "https://github.com/reactnativecn/react-native-pushy/issues"
},
"peerDependencies": {
2024-01-21 22:23:51 +08:00
"react": ">=16.8.0",
2024-01-22 18:39:52 +08:00
"react-native": ">=0.59.0"
2016-02-23 19:55:02 +08:00
},
"homepage": "https://github.com/reactnativecn/react-native-pushy#readme",
2020-08-31 11:47:08 +08:00
"dependencies": {
2024-07-29 00:45:10 +08:00
"nanoid": "^3.3.3",
"react-native-url-polyfill": "^2.0.0"
2023-02-19 18:20:21 +08:00
},
"codegenConfig": {
2024-03-20 21:37:59 +08:00
"name": "RCTPushySpec",
"type": "modules",
"jsSrcsDir": "src"
2023-03-15 23:27:25 +08:00
},
"devDependencies": {
2024-03-07 22:11:44 +08:00
"@babel/core": "^7.24.0",
"@react-native/babel-preset": "^0.73.21",
2024-01-18 00:22:17 +08:00
"@react-native/eslint-config": "^0.73.2",
2024-03-07 22:11:44 +08:00
"@react-native/typescript-config": "^0.74.0",
2023-03-16 07:49:44 +08:00
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.1",
2023-10-28 17:25:54 +08:00
"@types/node": "^20.8.9",
2024-01-22 15:06:02 +08:00
"@types/react": "^18.2.46",
2023-03-16 07:49:44 +08:00
"detox": "^20.5.0",
2024-03-07 22:11:44 +08:00
"eslint": "^8.57.0",
"eslint-plugin-ft-flow": "^3.0.7",
2023-07-01 12:11:28 +08:00
"firebase-tools": "^11.24.1",
2023-03-16 07:49:44 +08:00
"fs-extra": "^9.1.0",
2024-03-08 11:27:18 +08:00
"jest": "^29.7.0",
2023-07-01 12:11:28 +08:00
"pod-install": "^0.1.37",
2024-01-22 15:06:02 +08:00
"prettier": "^2",
"react": "18.2.0",
"react-native": "0.73",
"ts-jest": "^29.0.3",
"typescript": "^5.3.3"
2023-03-15 23:27:25 +08:00
}
2016-02-23 19:55:02 +08:00
}