@trackstall/sdk 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +75 -0
- package/index.d.ts +843 -0
- package/index.js +2734 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@trackstall/sdk",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "TrackStall client SDK (React Native / JS / web): clicks, install match, install referrer, ATT/IDFA, and attribution events with offline buffering + retry. Self-contained build — @trackstall/core, js-sha256 and uuid are inlined.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"index.js",
|
|
9
|
+
"index.d.ts",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"keywords": [
|
|
13
|
+
"attribution",
|
|
14
|
+
"mmp",
|
|
15
|
+
"mobile-measurement",
|
|
16
|
+
"meta-capi",
|
|
17
|
+
"tiktok-events-api",
|
|
18
|
+
"skadnetwork",
|
|
19
|
+
"react-native"
|
|
20
|
+
],
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/trackstall/trackstall.git",
|
|
25
|
+
"directory": "packages/sdk"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://github.com/trackstall/trackstall#readme",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"react-native-fbsdk-next": "*",
|
|
33
|
+
"@layers/expo-tiktok-business": "*",
|
|
34
|
+
"expo-tracking-transparency": "*",
|
|
35
|
+
"react-native-tracking-transparency": "*"
|
|
36
|
+
},
|
|
37
|
+
"peerDependenciesMeta": {
|
|
38
|
+
"react-native-fbsdk-next": {
|
|
39
|
+
"optional": true
|
|
40
|
+
},
|
|
41
|
+
"@layers/expo-tiktok-business": {
|
|
42
|
+
"optional": true
|
|
43
|
+
},
|
|
44
|
+
"expo-tracking-transparency": {
|
|
45
|
+
"optional": true
|
|
46
|
+
},
|
|
47
|
+
"react-native-tracking-transparency": {
|
|
48
|
+
"optional": true
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"sideEffects": false,
|
|
52
|
+
"private": false
|
|
53
|
+
}
|