@expo-harmony/expo-crypto 55.0.15-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,11 @@
1
+ # @expo-harmony/expo-crypto
2
+
3
+ [**GitHub 仓库**](https://github.com/renbaoshuo/expo-harmony/tree/master/packages/expo-crypto)
4
+
5
+ 为 HarmonyOS 上的 React Native 应用提供 Expo Crypto 的原生实现。
6
+ ## Author
7
+
8
+ **expo-harmony** © [Baoshuo](https://github.com/renbaoshuo), Released under the MIT License.<br>
9
+ Authored and maintained by Baoshuo with help from [contributors](https://github.com/renbaoshuo/expo-harmony/contributors).
10
+
11
+ > [Personal Website](https://baoshuo.ren) · [Blog](https://blog.baoshuo.ren) · GitHub [@renbaoshuo](https://github.com/renbaoshuo) · Twitter [@baoshuo](https://twitter.com/baoshuo)
@@ -0,0 +1,6 @@
1
+ {
2
+ "platforms": ["harmony"],
3
+ "harmony": {
4
+ "modules": ["ExpoCryptoModule", "ExpoCryptoAESModule"]
5
+ }
6
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@expo-harmony/expo-crypto",
3
+ "version": "55.0.15-harmony.1",
4
+ "description": "HarmonyOS port of expo-crypto",
5
+ "keywords": [
6
+ "react-native",
7
+ "expo",
8
+ "expo-harmony",
9
+ "harmonyos"
10
+ ],
11
+ "homepage": "https://github.com/renbaoshuo/expo-harmony/tree/master/packages/expo-crypto#readme",
12
+ "repository": "https://github.com/renbaoshuo/expo-harmony",
13
+ "author": {
14
+ "name": "Baoshuo",
15
+ "email": "i@baoshuo.ren",
16
+ "url": "https://github.com/renbaoshuo"
17
+ },
18
+ "main": "Index.ets",
19
+ "license": "MIT",
20
+ "dependencies": {
21
+ "@expo-harmony/expo-modules-core": "55.0.25-harmony.1"
22
+ }
23
+ }
Binary file
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ 'use strict';
2
+ module.exports = Object.freeze({});
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@expo-harmony/expo-crypto",
3
+ "version": "55.0.15-harmony.1",
4
+ "description": "HarmonyOS port of expo-crypto",
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-crypto"
17
+ },
18
+ "homepage": "https://github.com/renbaoshuo/expo-harmony/tree/master/packages/expo-crypto#readme",
19
+ "bugs": "https://github.com/renbaoshuo/expo-harmony/issues",
20
+ "main": "index.js",
21
+ "types": "index.d.ts",
22
+ "scripts": {
23
+ "harmony:clean": "expo-harmony-module prepare --clean-only",
24
+ "harmony:build": "expo-harmony-module prepare",
25
+ "prepack": "expo-harmony-module prepack"
26
+ },
27
+ "peerDependencies": {
28
+ "@expo-harmony/expo-modules-core": "55.0.25-harmony.1",
29
+ "expo-crypto": "55.0.15"
30
+ },
31
+ "devDependencies": {
32
+ "@expo-harmony/expo-module-scripts": "55.0.0-harmony.0",
33
+ "@expo-harmony/expo-modules-core": "55.0.25-harmony.1",
34
+ "@react-native-oh/react-native-harmony": "0.84.1",
35
+ "expo": "55.0.26",
36
+ "expo-crypto": "55.0.15",
37
+ "expo-modules-core": "55.0.25",
38
+ "react": "19.2.3",
39
+ "react-native": "0.84.1"
40
+ },
41
+ "engines": {
42
+ "node": ">=20"
43
+ },
44
+ "publishConfig": {
45
+ "access": "public"
46
+ }
47
+ }