-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.04 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.04 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
{
"name": "@usercentrics/react-native-sdk",
"version": "2.25.1",
"description": "Usercentrics SDK",
"homepage": "https://usercentrics.com",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Usercentrics <developer@usercentrics.com>",
"iosPackageName": "react-native-usercentrics",
"iosPackageVersion": "2.25.1",
"license": "SEE LICENSE IN LICENSE",
"files": [
"android",
"ios",
"lib",
"src",
"react-native-usercentrics.podspec",
"react-native.config.js",
"!.DS_Store",
"!.gradle",
"!.idea",
"!build",
"!gradle",
"!*.iml",
"!gradlew",
"!gradlew.bat",
"!local.properties",
"!project.xcworkspace",
"!xcshareddata",
"!xcuserdata"
],
"scripts": {
"compile": "rm -rf lib && tsc -p .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "yarn compile",
"test": "jest src/__tests__/index.test.ts",
"clean-all-caches": "./scripts/clean-all-caches.sh",
"install-dependencies": "./scripts/install-dependencies.sh",
"android": "./scripts/run-android.sh",
"run-android": "./scripts/run-android.sh",
"check-requirements": "./scripts/check-requirements.sh",
"auto-setup": "./scripts/auto-setup.sh",
"publish-local": "./scripts/publish-local.sh",
"prepublishOnly": "node scripts/generate-codegen-jni.js",
"pack:local": "node scripts/generate-codegen-jni.js && npm pack"
},
"devDependencies": {
"@babel/core": "^7.25.10",
"@react-native-community/cli": "^18.0.0",
"@react-native-community/cli-platform-android": "18.0.0",
"@react-native-community/cli-platform-ios": "18.0.0",
"@react-native-community/eslint-config": "^3.0.1",
"@react-native/babel-preset": "^0.81.1",
"@types/jest": "^29.5.2",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^19.0.0",
"babel-jest": "^29.5.0",
"eslint": "^8.44.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"metro-react-native-babel-preset": "^0.77.0",
"react": "^19.1.0",
"react-native": "^0.79.6",
"react-native-codegen": "^0.0.7",
"react-test-renderer": "^19.1.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov"
]
},
"directories": {
"example": "example",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/Usercentrics/react-native-sdk"
},
"bugs": {
"url": "https://github.com/Usercentrics/react-native-sdk/issues"
},
"dependencies": {},
"codegenConfig": {
"name": "RNUsercentricsModule",
"type": "all",
"jsSrcsDir": "./src/fabric",
"android": {
"javaPackageName": "com.usercentrics.reactnative"
}
}
}