-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1005 Bytes
/
package.json
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
{
"name": "react-native-paywall",
"version": "0.9.6",
"description": "A customizable paywall component for React Native applications",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/below70/react-native-paywall.git"
},
"keywords": [
"react-native",
"paywall",
"subscription"
],
"author": "Bilal Demirer",
"license": "MIT",
"peerDependencies": {
"react": "^18.0.0",
"react-native": ">=0.70.0 <0.77.0",
"react-native-safe-area-context": "^4.5.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@types/react": "^18.3.12",
"@types/react-native": "^0.72.8",
"typescript": "^5.6.3"
}
}