-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.97 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "find-chrome-bin",
"version": "2.0.2",
"description": "Finds local Chromium binary to use it with puppeteer-core",
"main": "index.js",
"exports": {
"import": "./index.js"
},
"keywords": [
"chrome",
"chromium",
"headless",
"find-chrome",
"puppeteer-core",
"browser-fetcher",
"puppeteer"
],
"license": "MIT",
"author": "mbalabash <[email protected]>",
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"types": "./index.d.ts",
"scripts": {
"unit": "tsm node_modules/uvu/bin.js test/",
"check": "eslint . && check-dts && size-limit",
"test": "yarn unit && yarn check"
},
"dependencies": {
"@puppeteer/browsers": "^2.1.0"
},
"devDependencies": {
"@logux/eslint-config": "^52.0.2",
"@size-limit/preset-small-lib": "^11.0.2",
"check-dts": "^0.7.2",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"nanospy": "^1.0.0",
"puppeteer-core": "^22.2.0",
"size-limit": "^11.0.2",
"tsm": "^2.3.0",
"typescript": "^5.3.3",
"uvu": "^0.5.6"
},
"eslintConfig": {
"extends": "@logux/eslint-config"
},
"eslintIgnore": [
"example/index.js"
],
"size-limit": [
{
"import": "{ delay }",
"path": "index.js",
"limit": "4 kB",
"ignore": [
"path",
"fs",
"child_process",
"os"
]
}
],
"prettier": {
"arrowParens": "avoid",
"quoteProps": "as-needed",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbalabash/find-chrome-bin.git"
},
"bugs": {
"url": "https://github.com/mbalabash/find-chrome-bin/issues"
},
"homepage": "https://github.com/mbalabash/find-chrome-bin#readme"
}