-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@kldzj/puppeteer-stream",
"description": "Screen capture puppeteer pages using either CDP tools or fmmpeg's x11grab",
"keywords": [
"puppeteer",
"ffmpeg",
"x11grab",
"screen",
"capture",
"record",
"stream"
],
"version": "0.0.0",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"license": "MIT",
"author": {
"name": "Nikolai Kolodziej",
"email": "npm@kldzj.dev",
"url": "https://github.com/kldzj"
},
"homepage": "https://github.com/kldzj/puppeteer-stream",
"repository": "https://github.com/kldzj/puppeteer-stream",
"bugs": "https://github.com/kldzj/puppeteer-stream/issues",
"scripts": {
"build": "tsc",
"prebuild": "rimraf dist",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/node": "^17.0.21",
"puppeteer": "^13.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"debug": "^4.3.4",
"fluent-ffmpeg": "^2.1.2",
"puppeteer-core": "^13.5.1",
"tiny-typed-emitter": "^2.1.0"
}
}