@loopcheck/qa-sdk 1.0.0 → 1.0.1
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 +14 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopcheck/qa-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Loopcheck browser SDK for element identity and session recording",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"repository": {
|
|
@@ -34,19 +34,6 @@
|
|
|
34
34
|
"README.md",
|
|
35
35
|
"ARCHITECTURE.md"
|
|
36
36
|
],
|
|
37
|
-
"scripts": {
|
|
38
|
-
"prepublishOnly": "pnpm build",
|
|
39
|
-
"build": "tsc -p tsconfig.build.json && node ./scripts/build-recorder.mjs",
|
|
40
|
-
"build:recorder": "node ./scripts/build-recorder.mjs",
|
|
41
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
42
|
-
"test": "vitest run",
|
|
43
|
-
"test:watch": "vitest",
|
|
44
|
-
"test:e2e": "playwright test",
|
|
45
|
-
"lint": "eslint src tests e2e --max-warnings=0",
|
|
46
|
-
"example": "vite --config example/vite.config.ts",
|
|
47
|
-
"example:build": "vite build --config example/vite.config.ts",
|
|
48
|
-
"size": "pnpm build && node ./scripts/size.mjs"
|
|
49
|
-
},
|
|
50
37
|
"peerDependencies": {
|
|
51
38
|
"react": ">=18",
|
|
52
39
|
"react-dom": ">=18"
|
|
@@ -75,5 +62,17 @@
|
|
|
75
62
|
"typescript-eslint": "^8.20.0",
|
|
76
63
|
"vite": "^7.1.0",
|
|
77
64
|
"vitest": "^3.2.0"
|
|
65
|
+
},
|
|
66
|
+
"scripts": {
|
|
67
|
+
"build": "tsc -p tsconfig.build.json && node ./scripts/build-recorder.mjs",
|
|
68
|
+
"build:recorder": "node ./scripts/build-recorder.mjs",
|
|
69
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
70
|
+
"test": "vitest run",
|
|
71
|
+
"test:watch": "vitest",
|
|
72
|
+
"test:e2e": "playwright test",
|
|
73
|
+
"lint": "eslint src tests e2e --max-warnings=0",
|
|
74
|
+
"example": "vite --config example/vite.config.ts",
|
|
75
|
+
"example:build": "vite build --config example/vite.config.ts",
|
|
76
|
+
"size": "pnpm build && node ./scripts/size.mjs"
|
|
78
77
|
}
|
|
79
|
-
}
|
|
78
|
+
}
|