-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.37 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
{
"dependencies": {
"playwright": "^1.56.0",
"with-defer": "^1.0.0",
"yargs": "^18.0.0"
},
"scripts": {
"build": "tsup --clean",
"test": "vitest run --coverage --hookTimeout 30000 --testTimeout 30000",
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"bin": {
"rendering-proxy": "./dist/main.js"
},
"name": "rendering-proxy",
"description": "Proxy to get the DOM rendered in a headless browser",
"version": "0.1.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@swc/core": "1.15.11",
"@types/cheerio": "1.0.0",
"@types/node": "24.10.13",
"@types/yargs": "17.0.35",
"@vitest/coverage-v8": "^4.1.2",
"cheerio": "1.2.0",
"http-server": "14.1.1",
"sleep-promise": "^9.1.0",
"tsup": "^8.5.0",
"typescript": "5.9.3",
"vitest": "^4.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitsuyui/rendering-proxy.git"
},
"keywords": [
"rendering",
"chromium",
"proxy"
],
"author": "Yui Kitsu <kitsuyui@kitsuyui.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kitsuyui/rendering-proxy/issues"
},
"homepage": "https://github.com/kitsuyui/rendering-proxy#readme",
"packageManager": "bun@1.3.11"
}