-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.56 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
{
"name": "cookiemonster",
"description": "Automatically gobble up cookie consent notices",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/brave-experiments/cookiemonster"
},
"scripts": {
"setup": "node src/setup.mjs",
"serve": "node --import ./src/instrument.mjs src/api.mjs",
"rebrowser-patches": "rebrowser-patches patch --packageName puppeteer-core",
"test": "node --test test/test.mjs",
"test:ci": "node --test --test-reporter=spec --test-reporter-destination=stdout --test-reporter=@reporters/github --test-reporter-destination=stdout test/test.mjs",
"lint": "standard",
"lint-fix": "standard --fix",
"build": "esbuild --bundle --format=cjs --sourcemap --outdir=bundles src/inpage/index.mjs",
"watch": "npm run build -- --watch"
},
"main": "src/lib.mjs",
"dependencies": {
"@gorhill/publicsuffixlist": "^3.0.1",
"@koa/bodyparser": "^5.1.1",
"@koa/router": "^13.0.0",
"@sentry/node": "^8.26.0",
"async-mutex": "^0.5.0",
"error-stack-parser": "^2.1.4",
"koa": "^2.15.3",
"koa-compress": "^5.1.1",
"openai": "^4.73.0",
"proxy-chain": "^2.5.3",
"puppeteer-core": "~23.11.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rebrowser-patches": "^1.0.15",
"rehype-format": "^5.0.0",
"rehype-parse": "^9.0.0",
"rehype-stringify": "^10.0.0",
"source-map": "^0.7.4",
"unified": "^11.0.4"
},
"devDependencies": {
"@reporters/github": "1.7.2",
"esbuild": "^0.24.2",
"standard": "17.1.2"
}
}