@adv-re/segment-wrapper 4.36.0-beta.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/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@adv-re/segment-wrapper",
3
+ "version": "4.36.0-beta.0",
4
+ "description": "Modern TypeScript abstraction layer on top of the Segment library",
5
+ "sideEffects": [
6
+ "./src/utils/patchAnalytics.ts",
7
+ "./src/index.ts",
8
+ "./dist/index.js",
9
+ "./dist/index.mjs"
10
+ ],
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.js"
16
+ }
17
+ },
18
+ "keywords": [
19
+ "segment",
20
+ "analytics",
21
+ "tracking",
22
+ "google-analytics",
23
+ "adobe",
24
+ "tcf"
25
+ ],
26
+ "scripts": {
27
+ "build": "npm run build:umd && tsup",
28
+ "build:umd": "tsup --config tsup.umd.config.ts",
29
+ "dev": "tsup --watch",
30
+ "lint": "eslint . --max-warnings 0",
31
+ "test": "jest",
32
+ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
33
+ "prepublishOnly": "npm run build"
34
+ },
35
+ "jest": {
36
+ "preset": "@adv-re/jest-presets/browser",
37
+ "testPathIgnorePatterns": [
38
+ "/node_modules/",
39
+ "/fixtures/",
40
+ "/helpers/"
41
+ ]
42
+ },
43
+ "prettier": "@adv-re/eslint-config/.prettierrc.js",
44
+ "devDependencies": {
45
+ "@adv-re/eslint-config": "*",
46
+ "@adv-re/jest-presets": "*",
47
+ "@adv-re/typescript-config": "*",
48
+ "@types/node": "^22.10.7",
49
+ "eslint": "^8.57.0",
50
+ "tsup": "^8.4.0",
51
+ "typescript": "5.8.3"
52
+ },
53
+ "dependencies": {
54
+ "tiny-hashes": "1.0.1"
55
+ },
56
+ "files": [
57
+ "dist"
58
+ ],
59
+ "author": "",
60
+ "license": "ISC"
61
+ }