-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "ssh-keygen-rn",
"version": "1.0.0",
"description": "Easily generate ssh keys in your React Native app",
"main": "src/index.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartfrigde/ssh-keygen-rn.git"
},
"keywords": [
"react",
"native",
"ssh",
"keygen",
"rsa"
],
"author": "smartfrigde",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartfrigde/ssh-keygen-rn/issues"
},
"homepage": "https://github.com/smartfrigde/ssh-keygen-rn#readme",
"dependencies": {
"node-forge": "^1.3.1",
"react-native-quick-crypto": "^0.7.13"
},
"devDependencies": {
"@types/node-forge": "^1.3.11",
"@types/react": "~19.0.0",
"expo": "~53.0.0",
"expo-module-scripts": "^4.1.6",
"react-native": "0.79.1"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}