@walkeros/web-destination-optimizely 3.4.0-next-1776749829492

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,78 @@
1
+ {
2
+ "name": "@walkeros/web-destination-optimizely",
3
+ "description": "Optimizely Feature Experimentation web destination for walkerOS (conversion tracking, revenue metrics, user targeting)",
4
+ "version": "3.4.0-next-1776749829492",
5
+ "license": "MIT",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.js"
14
+ },
15
+ "./examples": {
16
+ "types": "./dist/examples/index.d.ts",
17
+ "import": "./dist/examples/index.mjs",
18
+ "require": "./dist/examples/index.js"
19
+ },
20
+ "./dev": {
21
+ "types": "./dist/dev.d.ts",
22
+ "import": "./dist/dev.mjs",
23
+ "require": "./dist/dev.js"
24
+ },
25
+ "./walkerOS.json": "./dist/walkerOS.json"
26
+ },
27
+ "files": [
28
+ "dist/**"
29
+ ],
30
+ "scripts": {
31
+ "build": "tsup --silent",
32
+ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
33
+ "dev": "jest --watchAll --colors",
34
+ "typecheck": "tsc --noEmit",
35
+ "lint": "eslint \"**/*.ts*\"",
36
+ "test": "jest",
37
+ "update": "npx npm-check-updates -u && npm update"
38
+ },
39
+ "dependencies": {
40
+ "@optimizely/optimizely-sdk": "^6.0.0",
41
+ "@walkeros/web-core": "3.4.0-next-1776749829492"
42
+ },
43
+ "devDependencies": {
44
+ "@walkeros/collector": "3.4.0-next-1776749829492"
45
+ },
46
+ "repository": {
47
+ "url": "git+https://github.com/elbwalker/walkerOS.git",
48
+ "directory": "packages/web/destinations/optimizely"
49
+ },
50
+ "author": "elbwalker <hello@elbwalker.com>",
51
+ "homepage": "https://github.com/elbwalker/walkerOS#readme",
52
+ "bugs": {
53
+ "url": "https://github.com/elbwalker/walkerOS/issues"
54
+ },
55
+ "walkerOS": {
56
+ "type": "destination",
57
+ "platform": [
58
+ "web"
59
+ ],
60
+ "docs": "https://www.walkeros.io/docs/destinations/web/optimizely"
61
+ },
62
+ "keywords": [
63
+ "walkerOS",
64
+ "walkerOS-destination",
65
+ "destination",
66
+ "web",
67
+ "optimizely",
68
+ "feature-experimentation",
69
+ "ab-testing",
70
+ "conversion-tracking"
71
+ ],
72
+ "funding": [
73
+ {
74
+ "type": "GitHub Sponsors",
75
+ "url": "https://github.com/sponsors/elbwalker"
76
+ }
77
+ ]
78
+ }