@appsurify-testmap/rrweb-snapshot 2.0.0-alpha.21

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,74 @@
1
+ {
2
+ "name": "@appsurify-testmap/rrweb-snapshot",
3
+ "version": "2.0.0-alpha.21",
4
+ "description": "rrweb's component to take a snapshot of DOM, aka DOM serializer",
5
+ "scripts": {
6
+ "prepare": "npm run prepack",
7
+ "prepack": "npm run build",
8
+ "retest": "vitest run",
9
+ "test": "yarn build && vitest run",
10
+ "test:watch": "vitest watch",
11
+ "retest:update": "vitest run --update",
12
+ "test:update": "yarn build && vitest run --update",
13
+ "bench": "vite build && vitest bench",
14
+ "dev": "vite build --watch",
15
+ "build": "yarn turbo prepublish -F @appsurify-testmap/rrweb-snapshot",
16
+ "build:tarball": "yarn pack",
17
+ "check-types": "tsc --noEmit",
18
+ "prepublish": "yarn check-types && vite build",
19
+ "lint": "yarn eslint src"
20
+ },
21
+ "type": "module",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/rrweb-io/rrweb.git"
25
+ },
26
+ "keywords": [
27
+ "rrweb",
28
+ "snapshot",
29
+ "DOM"
30
+ ],
31
+ "main": "./dist/rrweb-snapshot.umd.cjs",
32
+ "module": "./dist/rrweb-snapshot.js",
33
+ "unpkg": "./dist/rrweb-snapshot.umd.cjs",
34
+ "typings": "dist/index.d.ts",
35
+ "exports": {
36
+ ".": {
37
+ "import": {
38
+ "types": "./dist/index.d.ts",
39
+ "default": "./dist/rrweb-snapshot.js"
40
+ },
41
+ "require": {
42
+ "types": "./dist/index.d.cts",
43
+ "default": "./dist/rrweb-snapshot.umd.cjs"
44
+ }
45
+ }
46
+ },
47
+ "files": [
48
+ "dist",
49
+ "package.json"
50
+ ],
51
+ "author": "yanzhen@smartx.com",
52
+ "license": "MIT",
53
+ "bugs": {
54
+ "url": "https://github.com/rrweb-io/rrweb/issues"
55
+ },
56
+ "homepage": "https://github.com/rrweb-io/rrweb/tree/master/packages/rrweb-snapshot#readme",
57
+ "devDependencies": {
58
+ "@appsurify-testmap/rrweb-types": "^2.0.0-alpha.21",
59
+ "@appsurify-testmap/rrweb-utils": "^2.0.0-alpha.21",
60
+ "@types/jsdom": "^20.0.0",
61
+ "@types/node": "^18.15.11",
62
+ "@types/puppeteer": "^5.4.4",
63
+ "puppeteer": "^17.1.3",
64
+ "ts-node": "^7.0.1",
65
+ "tslib": "^1.9.3",
66
+ "typescript": "^5.4.5",
67
+ "vite": "^5.3.1",
68
+ "vite-plugin-dts": "^3.9.1",
69
+ "vitest": "^1.4.0"
70
+ },
71
+ "dependencies": {
72
+ "postcss": "^8.4.38"
73
+ }
74
+ }