-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
105 lines (105 loc) · 2.67 KB
/
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
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
{
"name": "react-native-purchases",
"title": "React Native Purchases",
"version": "8.5.0",
"description": "React Native in-app purchases and subscriptions made easy. Supports iOS and Android. ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index",
"files": [
"dist",
"android",
"!android/gradlew*",
"!android/.gradle",
"!android/gradle",
"!android/build",
"!android/local.properties",
"ios",
"!ios/build",
"!ios/RNPurchases.xcodeproj/project.xcworkspace",
"!ios/RNPurchases.xcodeproj/xcuserdata",
"RNPurchases.podspec",
"scripts",
"!**/__tests__",
"!**/.idea",
"!**/*.iml",
"!**/.DS_Store",
"!**/.gitignore",
"!react-native-purchases-ui",
"!scripts/docs/index.html",
"!scripts/setupJest.js"
],
"scripts": {
"build": "tsc",
"build-watch": "tsc --watch",
"test": "jest",
"typecheck": "tsc --noEmit",
"tslint": "tslint -c tslint.json 'src/*.ts'",
"prepare": "tsc",
"example": "yarn workspace purchasetester",
"ui": "yarn workspace react-native-purchases-ui",
"bootstrap": "yarn && yarn example pods"
},
"workspaces": [
"examples/purchaseTesterTypescript",
"react-native-purchases-ui"
],
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/revenuecat/react-native-purchases.git",
"baseUrl": "https://github.com/revenuecat/react-native-purchases"
},
"keywords": [
"react-native",
"in-app purchase",
"subscriptions",
"iap",
"iOS",
"Apple",
"Android"
],
"author": "RevenueCat, Inc.",
"license": "MIT",
"readmeFilename": "README.md",
"peerDependencies": {
"react": ">= 16.6.3",
"react-native": "*"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/react": "^18.2.44",
"@types/react-dom": "~18.2.0",
"jest": "^29.7.0",
"jest-react-native": "^18.0.0",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-native": "0.73.5",
"ts-jest": "^29.1.2",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.25.11",
"typescript": "^5.2.2"
},
"resolutions": {
"@types/react": "^18.2.44",
"@types/react-native": "0.73.5",
"@types/react-dom": "18.2.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/examples/purchaseTesterTypescript/",
"<rootDir>/react-native-purchases-ui/",
"<rootDir>/dir/"
],
"cacheDirectory": ".jest/cache",
"setupFiles": [
"./scripts/setupJest.js"
]
},
"dependencies": {
"@revenuecat/purchases-typescript-internal": "13.14.0"
}
}