-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
85 lines (85 loc) · 2.68 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
{
"$schema": "https://json.schemastore.org/package",
"name": "react-native-adapty",
"version": "3.0.1",
"description": "Adapty React Native SDK",
"license": "MIT",
"author": "Vanya Dorofeyev <[email protected]> (https://github.com/divanc)",
"packageManager": "[email protected]",
"keywords": [
"react-native",
"adapty",
"purchases",
"in-apps",
"subscriptions"
],
"repository": "https://github.com/adaptyteam/AdaptySDK-React-Native",
"homepage": "https://github.com/adaptyteam/AdaptySDK-React-Native#readme",
"bugs": {
"url": "https://github.com/adaptyteam/AdaptySDK-React-Native/issues"
},
"files": [
"dist/",
"lib/ios/",
"!lib/ios/build",
"!lib/ios/RNAdapty.xcodeproj/project.xcworkspace",
"!lib/ios/RNAdapty.xcodeproj/xcuserdata",
"*.podspec",
"lib/android/",
"!lib/android/build",
"!lib/android/gradle",
"!lib/android/gradlew*",
"!lib/android/local.properties",
"react-native.config.js",
"!**/.*"
],
"main": "dist/index.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "yarn run tsc -p tsconfig.build.json && yarn run tsc-alias -p tsconfig.build.json",
"clean": "./scripts/clean.sh",
"format": "prettier ./lib/src -w --plugin=prettier-plugin-sort-json",
"lint": "eslint ./lib/src --ext .ts",
"test": "jest",
"update-versions": "node ./scripts/update_versions.cjs",
"prepack": "yarn format && yarn lint && yarn test && yarn update-versions && yarn build",
"prepublishOnly": "yarn prepack"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/helper-explode-assignable-expression": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "7.10.4",
"@babel/plugin-proposal-export-namespace-from": "7.10.4",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@types/node": "^18.10.0",
"@types/react": "^16.13.1",
"@types/react-native": "0.70.5",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"babel-jest": "^29.6.2",
"bun-types": "^0.5.7",
"eslint": "8.46.0",
"eslint-config-prettier": "8.8.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"prettier": "3.0.0",
"prettier-plugin-sort-json": "^1.0.0",
"prompt-sync": "^4.2.0",
"react": "16.13.1",
"react-native": "0.70.5",
"react-native-config": "^1.3.3",
"ts-jest": "^29.1.1",
"tsc-alias": "^1.8.7",
"tslib": "2.6.1",
"typedoc": "0.24.8",
"typescript": "5.1.6",
"react-native-testing-library": "^6.0.0",
"react-test-renderer": "^18.2.0"
},
"peerDependencies": {
"react-native": ">= 0.60.0"
},
"peerDependenciesMeta": {}
}