litivo-wrapper 0.3.3 → 0.3.4
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/README.md +3 -2
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -38,12 +38,13 @@ This project is intended for **personal use and learning purposes**.
|
|
|
38
38
|
### Library
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
|
-
npm install
|
|
41
|
+
npm install litivo-wrapper
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
-
###
|
|
44
|
+
### Requirements:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
+
npm install playwright
|
|
47
48
|
npx playwright install
|
|
48
49
|
```
|
|
49
50
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "litivo-wrapper",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Litivo Wrapper.",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,6 +36,9 @@
|
|
|
36
36
|
"typescript": "^5.9.3",
|
|
37
37
|
"vitest": "^4.0.18"
|
|
38
38
|
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"playwright": "^1.58.0"
|
|
41
|
+
},
|
|
39
42
|
"dependencies": {
|
|
40
43
|
"playwright": "^1.58.0",
|
|
41
44
|
"zod": "^4.3.6"
|