-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.87 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
68
69
70
71
72
73
74
75
{
"name": "@sparticuz/chromium",
"version": "149.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"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"types": "./build/index.d.ts",
"files": [
"bin",
"!bin/arm64",
"!bin/x64",
"build"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:fonts": "rm -f bin/fonts.tar.br && node ./tools/download-open-sans.mjs",
"layer:arm64": "make chromium-layer.arm64.zip",
"layer:x64": "make chromium-layer.x64.zip",
"lint": "eslint",
"pack:arm64": "make pack-arm64",
"pack:x64": "make pack-x64",
"test:integration": "make clean && make && make pretest && make test",
"test:source": "make presource && vitest run --coverage && make postsource",
"update": "node ./tools/update-browser-revision.mjs"
},
"dependencies": {
"tar-fs": "^3.1.2"
},
"devDependencies": {
"@sparticuz/eslint-config": "^11.5.0",
"@tsconfig/node22": "^22.0.5",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^22.19.19",
"@types/tar-fs": "^2.0.4",
"@vitest/coverage-v8": "^4.1.7",
"clean-modules": "^4.0.0",
"eslint": "^10.4.0",
"prettier": "^3.8.3",
"puppeteer-core": "^25.0.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.7"
},
"engines": {
"node": "^22.17.0 || >=24.0.0"
}
}