-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.56 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
66
67
{
"name": "rollberry",
"version": "0.2.0",
"description": "CLI to capture smooth top-to-bottom scroll videos from web pages, including localhost URLs.",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"packageManager": "pnpm@10.15.0",
"author": "CORe Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/co-r-e/rollberry.git"
},
"homepage": "https://github.com/co-r-e/rollberry#readme",
"bugs": {
"url": "https://github.com/co-r-e/rollberry/issues"
},
"keywords": [
"cli",
"playwright",
"scroll",
"video",
"automation",
"localhost"
],
"files": [
"dist",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"README.md",
"SECURITY.md",
"regression.sample.json",
"rollberry.project.schema.json",
"rollberry.project.sample.json"
],
"bin": {
"rollberry": "dist/cli.js"
},
"engines": {
"node": ">=24.12.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "biome check . && tsc -p tsconfig.json --noEmit",
"dev": "tsx src/cli.ts",
"browsers:install": "playwright install chromium",
"prepack": "npm run build",
"regression": "tsx scripts/run-regression-suite.ts",
"test": "vitest run"
},
"dependencies": {
"playwright": "1.58.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/node": "25.5.0",
"selfsigned": "5.5.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.1.0"
}
}