@posthog/rrweb-player 0.0.33 → 0.0.35
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/LICENSE +21 -0
- package/dist/rrweb-player.cjs +319 -260
- package/dist/rrweb-player.cjs.map +1 -1
- package/dist/rrweb-player.d.cts +47 -26
- package/dist/rrweb-player.d.ts +47 -26
- package/dist/rrweb-player.js +319 -260
- package/dist/rrweb-player.js.map +1 -1
- package/dist/rrweb-player.umd.cjs +321 -274
- package/dist/rrweb-player.umd.cjs.map +3 -3
- package/dist/rrweb-player.umd.min.cjs +43 -55
- package/dist/rrweb-player.umd.min.cjs.map +4 -4
- package/package.json +63 -62
package/package.json
CHANGED
|
@@ -1,64 +1,65 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
2
|
+
"name": "@posthog/rrweb-player",
|
|
3
|
+
"version": "0.0.35",
|
|
4
|
+
"devDependencies": {
|
|
5
|
+
"fast-glob": "^3.3.2",
|
|
6
|
+
"@sveltejs/adapter-auto": "^3.0.0",
|
|
7
|
+
"@sveltejs/kit": "^2.0.0",
|
|
8
|
+
"@sveltejs/package": "^2.0.0",
|
|
9
|
+
"@sveltejs/vite-plugin-svelte": "^3.0.0",
|
|
10
|
+
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
11
|
+
"@typescript-eslint/parser": "^7.0.0",
|
|
12
|
+
"eslint-plugin-svelte": "^2.37.0",
|
|
13
|
+
"prettier-plugin-svelte": "^3.1.2",
|
|
14
|
+
"svelte": "^4.2.14",
|
|
15
|
+
"svelte-check": "^3.4.3",
|
|
16
|
+
"svelte-preprocess": "^5.0.3",
|
|
17
|
+
"svelte2tsx": "^0.7.30",
|
|
18
|
+
"tslib": "^2.0.0",
|
|
19
|
+
"vite": "^5.3.1",
|
|
20
|
+
"@posthog/rrweb-types": "0.0.35"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@tsconfig/svelte": "^1.0.0",
|
|
24
|
+
"@posthog/rrweb-replay": "0.0.19",
|
|
25
|
+
"@posthog/rrweb-snapshot": "0.0.35",
|
|
26
|
+
"@posthog/rrweb-packer": "0.0.0"
|
|
27
|
+
},
|
|
28
|
+
"description": "rrweb's replayer UI",
|
|
29
|
+
"main": "./dist/rrweb-player.umd.cjs",
|
|
30
|
+
"module": "./dist/rrweb-player.js",
|
|
31
|
+
"unpkg": "./dist/rrweb-player.umd.cjs",
|
|
32
|
+
"typings": "dist/rrweb-player.d.ts",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"import": {
|
|
36
|
+
"types": "./dist/rrweb-player.d.ts",
|
|
37
|
+
"default": "./dist/rrweb-player.js"
|
|
38
|
+
},
|
|
39
|
+
"require": {
|
|
40
|
+
"types": "./dist/rrweb-player.d.cts",
|
|
41
|
+
"default": "./dist/rrweb-player.cjs"
|
|
42
|
+
}
|
|
20
43
|
},
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"types": "./dist/rrweb-player.d.ts",
|
|
44
|
-
"default": "./dist/rrweb-player.js"
|
|
45
|
-
},
|
|
46
|
-
"require": {
|
|
47
|
-
"types": "./dist/rrweb-player.d.cts",
|
|
48
|
-
"default": "./dist/rrweb-player.cjs"
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
"./dist/style.css": "./dist/style.css"
|
|
52
|
-
},
|
|
53
|
-
"files": [
|
|
54
|
-
"dist",
|
|
55
|
-
"package.json"
|
|
56
|
-
],
|
|
57
|
-
"type": "module",
|
|
58
|
-
"repository": {
|
|
59
|
-
"type": "git",
|
|
60
|
-
"url": "git+https://github.com/PostHog/posthog-rrweb.git"
|
|
61
|
-
},
|
|
62
|
-
"author": "yanzhen@smartx.com",
|
|
63
|
-
"license": "MIT"
|
|
64
|
-
}
|
|
44
|
+
"./dist/style.css": "./dist/style.css"
|
|
45
|
+
},
|
|
46
|
+
"files": [
|
|
47
|
+
"dist",
|
|
48
|
+
"package.json"
|
|
49
|
+
],
|
|
50
|
+
"type": "module",
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "git+https://github.com/PostHog/posthog-rrweb.git"
|
|
54
|
+
},
|
|
55
|
+
"author": "yanzhen@smartx.com",
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"scripts": {
|
|
58
|
+
"dev": "vite build --watch",
|
|
59
|
+
"build": "vite build",
|
|
60
|
+
"start": "vite",
|
|
61
|
+
"check-types": "svelte-check --tsconfig ./tsconfig.json",
|
|
62
|
+
"prepublish": "pnpm build",
|
|
63
|
+
"lint": "pnpm eslint src/**/*.ts"
|
|
64
|
+
}
|
|
65
|
+
}
|