-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.96 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
{
"name": "expo-superwall",
"version": "1.1.5",
"description": "Offical Expo Integration for Superwall",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"exports": {
".": {
"import": "./build/src/index.js",
"types": "./build/src/index.d.ts"
},
"./compat": {
"import": "./build/src/compat/index.js",
"types": "./build/src/compat/index.d.ts"
},
"./package.json": "./build/package.json"
},
"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",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"format": "biome check --write .",
"android": "expo run:android",
"ios": "expo run:ios",
"version": "changeset version",
"release": "yarn build && changeset publish",
"postinstall": "node scripts/check-expo-version.js"
},
"keywords": [
"react-native",
"expo",
"expo-superwall",
"SuperwallExpo"
],
"repository": "https://github.com/superwall/expo-superwall",
"bugs": {
"url": "https://github.com/superwall/expo-superwall/issues"
},
"author": "Makisuo <david@superwall.com> (https://github.com/makisuo)",
"license": "MIT",
"homepage": "https://github.com/superwall/expo-superwall#readme",
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@changesets/cli": "^2.29.7",
"@types/react": "~19.0.10",
"expo": "*",
"expo-module-scripts": "^5.0.7",
"react-native": "*"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"files": [
"build",
"README.md",
"LICENSE",
"CHANGELOG.md",
"ios",
"android",
"expo-module.config.json",
"scripts"
],
"packageManager": "yarn@4.7.0",
"dependencies": {
"zustand": "^5.0.9"
}
}