-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "setup-chrome",
"version": "1.7.2",
"description": "Set up your GitHub Actions workflow with a specific version of chromium",
"main": "dist/index.js",
"packageManager": "[email protected]",
"engines": {
"node": "20.6.1"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"actions-swing": "^0.0.6"
},
"devDependencies": {
"@biomejs/biome": "^1.7.2",
"@types/node": "^20.6.2",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.4.5",
"vitest": "^2.0.2"
},
"scripts": {
"build": "ncc build src/index.ts",
"build:watch": "ncc build --watch src/index.ts",
"package": "cp action.yml README.md dist/",
"test": "vitest",
"lint": "biome ci .",
"lint:fix": "biome check --apply ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/browser-actions/setup-chrome.git"
},
"keywords": [
"actions",
"node",
"setup",
"chromium"
],
"author": "Shin'ya Ueoka",
"license": "MIT",
"bugs": {
"url": "https://github.com/browser-actions/setup-chrome/issues"
},
"homepage": "https://github.com/browser-actions/setup-chrome#readme"
}