@expo-harmony/expo-status-bar 55.0.6-harmony.0

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,8 @@
1
+ # @expo-harmony/expo-status-bar
2
+
3
+ 为 HarmonyOS 上的 React Native 应用提供 `expo-status-bar` 的兼容入口。
4
+
5
+ ## Author
6
+
7
+ **expo-harmony** © [Baoshuo](https://baoshuo.ren), Released under the MIT License.<br>
8
+ Authored and maintained by Baoshuo with help from [contributors](https://github.com/renbaoshuo/expo-harmony/contributors).
@@ -0,0 +1,6 @@
1
+ {
2
+ "platforms": ["harmony"],
3
+ "harmony": {
4
+ "modules": []
5
+ }
6
+ }
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from 'expo-status-bar';
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ 'use strict';
2
+
3
+ module.exports = Object.freeze({});
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@expo-harmony/expo-status-bar",
3
+ "version": "55.0.6-harmony.0",
4
+ "description": "HarmonyOS port of expo-status-bar",
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-status-bar"
17
+ },
18
+ "homepage": "https://github.com/renbaoshuo/expo-harmony/tree/master/packages/expo-status-bar#readme",
19
+ "bugs": "https://github.com/renbaoshuo/expo-harmony/issues",
20
+ "main": "index.js",
21
+ "react-native": "src/index.ts",
22
+ "types": "index.d.ts",
23
+ "scripts": {
24
+ "typecheck": "tsc --noEmit -p tsconfig.json"
25
+ },
26
+ "peerDependencies": {
27
+ "expo-status-bar": "55.0.6",
28
+ "react": "*",
29
+ "react-native": "*"
30
+ },
31
+ "devDependencies": {
32
+ "@types/react": "19.2.2",
33
+ "expo-status-bar": "55.0.6",
34
+ "react": "19.2.3",
35
+ "react-native": "0.84.1",
36
+ "typescript": "6.0.3"
37
+ },
38
+ "engines": {
39
+ "node": ">=20"
40
+ },
41
+ "publishConfig": {
42
+ "access": "public"
43
+ }
44
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export * from 'expo-status-bar';
package/tsconfig.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "compilerOptions": {
3
+ "allowSyntheticDefaultImports": true,
4
+ "esModuleInterop": true,
5
+ "lib": ["ES2022"],
6
+ "module": "ESNext",
7
+ "moduleResolution": "Bundler",
8
+ "noEmit": true,
9
+ "skipLibCheck": true,
10
+ "strict": true,
11
+ "target": "ES2022",
12
+ "types": ["react"]
13
+ },
14
+ "include": ["src/**/*.ts", "index.d.ts"]
15
+ }