-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
54 lines (54 loc) · 1.17 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
51
52
53
54
{
"name": "@sparticuz/chromium",
"version": "131.0.0",
"description": "Chromium Binary for Serverless Platforms",
"keywords": [
"aws",
"browser",
"chrome",
"chromium",
"lambda",
"puppeteer",
"playwright",
"serverless"
],
"homepage": "https://github.com/Sparticuz/chromium",
"bugs": {
"url": "https://github.com/Sparticuz/chromium/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/Sparticuz/chromium.git"
},
"license": "MIT",
"author": {
"name": "Kyle McNally"
},
"type": "commonjs",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"bin",
"build"
],
"scripts": {
"build": "rm -rf build && tsc -p tsconfig.json",
"test": "make clean && make && make pretest && make test"
},
"dependencies": {
"follow-redirects": "^1.15.9",
"tar-fs": "^3.0.6"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/follow-redirects": "^1.14.4",
"@types/node": "^20.16.10",
"@types/tar-fs": "^2.0.4",
"clean-modules": "^3.1.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">= 16"
}
}