@expo-harmony/expo-dev-client 55.0.35-harmony.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # @expo-harmony/expo-dev-client
2
+
3
+ [**GitHub 仓库**](https://github.com/renbaoshuo/expo-harmony/tree/master/packages/expo-dev-client) | [官方文档](https://docs.expo.dev/versions/v55.0.0/sdk/dev-client/)
4
+
5
+ 为 HarmonyOS 上的 React Native 应用提供 Expo 开发客户端的依赖聚合,与官方同版本的 `expo-dev-client` 配套使用。
6
+
7
+ ## 安装
8
+
9
+ ```bash
10
+ npm install @expo-harmony/expo-dev-client expo-dev-client@55.0.35
11
+ ```
12
+
13
+ 本包适配 Expo SDK 55,原生模块通过 Expo Harmony 自动链接。最低支持 HarmonyOS 5.0.1(API 13)。启动器和开发菜单仅在开发构建中启用。
14
+
15
+ 开发构建需要注册 `@expo-harmony/expo-dev-launcher` 的 Config Plugin,插件接受 `launchMode`(默认 `most-recent`,可选 `launcher`)和 `toolsButton`(FAB 初始可见性)两个选项。
16
+
17
+ ## Author
18
+
19
+ **expo-harmony** © [Baoshuo](https://github.com/renbaoshuo), Released under the MIT License.<br>
20
+ Authored and maintained by Baoshuo with help from [contributors](https://github.com/renbaoshuo/expo-harmony/contributors).
21
+
22
+ > [Personal Website](https://baoshuo.ren) · [Blog](https://blog.baoshuo.ren) · GitHub [@renbaoshuo](https://github.com/renbaoshuo) · Twitter [@renbaoshuo](https://twitter.com/renbaoshuo)
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ 'use strict';
2
+
3
+ module.exports = Object.freeze({});
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@expo-harmony/expo-dev-client",
3
+ "version": "55.0.35-harmony.1",
4
+ "description": "HarmonyOS port of expo-dev-client",
5
+ "keywords": [
6
+ "react-native",
7
+ "expo",
8
+ "expo-harmony",
9
+ "harmonyos"
10
+ ],
11
+ "license": "MIT",
12
+ "author": "Baoshuo <i@baoshuo.ren>",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/renbaoshuo/expo-harmony.git",
16
+ "directory": "packages/expo-dev-client"
17
+ },
18
+ "homepage": "https://github.com/renbaoshuo/expo-harmony/tree/master/packages/expo-dev-client#readme",
19
+ "bugs": "https://github.com/renbaoshuo/expo-harmony/issues",
20
+ "main": "index.js",
21
+ "types": "index.d.ts",
22
+ "peerDependencies": {
23
+ "expo-dev-client": "55.0.35"
24
+ },
25
+ "engines": {
26
+ "node": ">=20"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "dependencies": {
32
+ "@expo-harmony/expo-dev-launcher": "55.0.36-harmony.1"
33
+ }
34
+ }