@walkeros/web-source-browser 1.1.3 → 1.1.4-next-1771257332985
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/dist/dev.js +1 -1
- package/dist/dev.js.map +1 -1
- package/dist/dev.mjs +1 -1
- package/dist/dev.mjs.map +1 -1
- package/dist/walkerOS.json +83 -0
- package/package.json +12 -6
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$meta": {
|
|
3
|
+
"package": "@walkeros/web-source-browser",
|
|
4
|
+
"version": "1.1.3",
|
|
5
|
+
"type": "source",
|
|
6
|
+
"platform": "web"
|
|
7
|
+
},
|
|
8
|
+
"schemas": {
|
|
9
|
+
"settings": {
|
|
10
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
11
|
+
"type": "object",
|
|
12
|
+
"properties": {
|
|
13
|
+
"prefix": {
|
|
14
|
+
"default": "data-elb",
|
|
15
|
+
"description": "Prefix for data attributes (default: data-elb)",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"minLength": 1,
|
|
18
|
+
"pattern": "^[a-z][a-z0-9-]*$"
|
|
19
|
+
},
|
|
20
|
+
"scope": {
|
|
21
|
+
"description": "DOM scope for event tracking (default: document)",
|
|
22
|
+
"type": "string"
|
|
23
|
+
},
|
|
24
|
+
"pageview": {
|
|
25
|
+
"default": true,
|
|
26
|
+
"description": "Enable automatic pageview tracking",
|
|
27
|
+
"type": "boolean"
|
|
28
|
+
},
|
|
29
|
+
"elb": {
|
|
30
|
+
"default": "elb",
|
|
31
|
+
"description": "Name for global elb function",
|
|
32
|
+
"type": "string",
|
|
33
|
+
"minLength": 1,
|
|
34
|
+
"pattern": "^[a-zA-Z_$][a-zA-Z0-9_$]*$"
|
|
35
|
+
},
|
|
36
|
+
"name": {
|
|
37
|
+
"type": "string",
|
|
38
|
+
"description": "Custom name for source instance"
|
|
39
|
+
},
|
|
40
|
+
"elbLayer": {
|
|
41
|
+
"default": "elbLayer",
|
|
42
|
+
"description": "Enable elbLayer for async command queuing (boolean, string, or Elb.Layer)",
|
|
43
|
+
"anyOf": [
|
|
44
|
+
{
|
|
45
|
+
"type": "boolean"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"description": "Elb.Layer array for async command queuing"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"required": [
|
|
57
|
+
"prefix",
|
|
58
|
+
"pageview",
|
|
59
|
+
"elb",
|
|
60
|
+
"elbLayer"
|
|
61
|
+
],
|
|
62
|
+
"additionalProperties": false
|
|
63
|
+
},
|
|
64
|
+
"tagger": {
|
|
65
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
66
|
+
"type": "object",
|
|
67
|
+
"properties": {
|
|
68
|
+
"prefix": {
|
|
69
|
+
"default": "data-elb",
|
|
70
|
+
"description": "Custom prefix for generated data attributes",
|
|
71
|
+
"type": "string",
|
|
72
|
+
"minLength": 1,
|
|
73
|
+
"pattern": "^[a-z][a-z0-9-]*$"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"required": [
|
|
77
|
+
"prefix"
|
|
78
|
+
],
|
|
79
|
+
"additionalProperties": false
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"examples": {}
|
|
83
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walkeros/web-source-browser",
|
|
3
3
|
"description": "Browser DOM source for walkerOS",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.4-next-1771257332985",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.mjs",
|
|
@@ -25,13 +25,14 @@
|
|
|
25
25
|
"build": "tsup --silent",
|
|
26
26
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
27
27
|
"dev": "jest --watchAll --colors",
|
|
28
|
-
"
|
|
28
|
+
"typecheck": "tsc --noEmit",
|
|
29
|
+
"lint": "eslint \"**/*.ts*\"",
|
|
29
30
|
"test": "jest",
|
|
30
31
|
"update": "npx npm-check-updates -u && npm update"
|
|
31
32
|
},
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@walkeros/collector": "1.
|
|
34
|
-
"@walkeros/web-core": "1.0.
|
|
34
|
+
"@walkeros/collector": "1.3.0-next-1771257332985",
|
|
35
|
+
"@walkeros/web-core": "1.0.6-next-1771257332985"
|
|
35
36
|
},
|
|
36
37
|
"repository": {
|
|
37
38
|
"url": "git+https://github.com/elbwalker/walkerOS.git",
|
|
@@ -42,13 +43,18 @@
|
|
|
42
43
|
"bugs": {
|
|
43
44
|
"url": "https://github.com/elbwalker/walkerOS/issues"
|
|
44
45
|
},
|
|
46
|
+
"walkerOS": {
|
|
47
|
+
"type": "source",
|
|
48
|
+
"platform": "web"
|
|
49
|
+
},
|
|
45
50
|
"keywords": [
|
|
46
|
-
"walker",
|
|
47
51
|
"walkerOS",
|
|
52
|
+
"walkerOS-source",
|
|
48
53
|
"source",
|
|
49
54
|
"web",
|
|
50
55
|
"browser",
|
|
51
|
-
"dom"
|
|
56
|
+
"dom",
|
|
57
|
+
"analytics"
|
|
52
58
|
],
|
|
53
59
|
"funding": [
|
|
54
60
|
{
|