-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.3 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
48
49
50
{
"dependencies": {
"playwright": "^1.45.0",
"sleep-promise": "^9.1.0",
"with-defer": "^1.0.0",
"yargs": "^17.7.2"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "biome check .",
"format": "biome check --write ."
},
"bin": {
"rendering-proxy": "./dist/main.js"
},
"name": "rendering-proxy",
"description": "Proxy to get the DOM rendered in a headless browser",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@swc/core": "1.10.4",
"@swc/jest": "0.2.37",
"@types/cheerio": "0.22.35",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"@types/yargs": "17.0.33",
"cheerio": "1.0.0",
"http-server": "14.1.1",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitsuyui/rendering-proxy.git"
},
"keywords": ["rendering", "chromium", "proxy"],
"author": "Yui Kitsu <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kitsuyui/rendering-proxy/issues"
},
"homepage": "https://github.com/kitsuyui/rendering-proxy#readme",
"packageManager": "[email protected]"
}