-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.94 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 2.94 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@openfort/react-native",
"main": "dist/index.js",
"version": "1.1.0",
"license": "MIT",
"description": "React Native SDK for Openfort platform integration",
"repository": {
"type": "git",
"url": "git+https://github.com/openfort-xyz/react-native.git"
},
"homepage": "https://github.com/openfort-xyz/react-native#readme",
"bugs": {
"url": "https://github.com/openfort-xyz/react-native/issues"
},
"scripts": {
"build": "tsc",
"check": "biome check",
"clean": "rm -rf dist",
"changeset": "changeset",
"changeset:version": "pnpm install --lockfile-only && changeset version",
"changeset:publish": "pnpm build && changeset publish",
"check:unused": "pnpm clean && knip",
"check:fix": "biome check --write --unsafe",
"lint": "tsc -b && biome lint .",
"link": "pnpm link",
"unlink": "pnpm unlink",
"docs:build": "typedoc",
"size": "size-limit",
"size:check": "size-limit --ci"
},
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/types/index.d.ts"
}
},
"dependencies": {
"@openfort/openfort-js": "^1.3.0",
"react-native-passkeys": "0.4.0"
},
"peerDependencies": {
"expo-apple-authentication": "*",
"expo-application": "*",
"expo-crypto": "*",
"expo-linking": "*",
"expo-secure-store": "*",
"expo-web-browser": "*",
"react": "*",
"react-native": "*",
"react-native-webview": "*"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@size-limit/preset-small-lib": "^11.2.0",
"@types/react": "~18.3.12",
"buffer": "^5.4.3",
"expo-apple-authentication": "^7.2.4",
"expo-application": "^6.1.4",
"expo-crypto": "14.0.2",
"expo-linking": "^7.1.5",
"expo-secure-store": "^14.2.3",
"expo-web-browser": "^14.1.6",
"knip": "^5.69.1",
"react": "^18.3.1",
"react-native": "0.77.1",
"react-native-webview": "^13.15.0",
"size-limit": "^11.2.0",
"typedoc": "^0.28.14",
"typescript": "5.9.3"
},
"knip": {
"entry": [
"src/index.ts!"
],
"ignore": [
".github/**",
".husky/**",
"**/dist/**",
"test/**"
],
"ignoreDependencies": [
"buffer"
],
"ignoreExportsUsedInFile": true
},
"private": false,
"packageManager": "pnpm@10.19.0",
"size-limit": [
{
"path": "dist/index.js",
"limit": "250 KB",
"ignore": [
"expo-modules-core"
]
}
],
"pnpm": {
"auditConfig": {
"ignoreCves": [
"CVE-2025-14505"
]
},
"overrides": {
"glob@>=10.3.7 <=11.0.3": ">=11.1.0",
"node-forge@<1.3.2": ">=1.3.2",
"axios@<=1.13.4": ">=1.13.5",
"markdown-it@>=13.0.0 <14.1.1": ">=14.1.1",
"minimatch": ">=10.2.3",
"bn.js": ">=5.2.3"
}
}
}