-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.42 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "launchreel",
"version": "0.0.2",
"description": "Turn any website into launch videos and screenshots",
"type": "module",
"bin": {
"launchreel": "dist/index.js",
"lr": "dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean --external openai --external @anthropic-ai/sdk",
"dev": "tsx src/index.ts",
"test": "vitest"
},
"keywords": [
"product-hunt",
"screenshots",
"video",
"demo",
"launch",
"puppeteer",
"rrweb",
"recording"
],
"license": "MIT",
"author": "Tim Chosen",
"repository": {
"type": "git",
"url": "git+https://github.com/gudlab/launchreel.git"
},
"homepage": "https://github.com/gudlab/launchreel#readme",
"bugs": {
"url": "https://github.com/gudlab/launchreel/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"commander": "^13.0.0",
"dotenv": "^16.4.0",
"ora": "^8.1.0",
"puppeteer": "^24.0.0",
"rrweb": "^2.0.0-alpha.18",
"yaml": "^2.6.0",
"zod": "^3.24.0"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"openai": "^4.77.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}