-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "bromato",
"version": "0.0.8",
"repository": {
"type": "git",
"url": "https://github.com/gyoridavid/bromato"
},
"description": "Local browser automation for no-code tools like n8n or make",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.build.json",
"dev": "node --watch -r ts-node/register src/index.ts",
"test": "vitest",
"prepublishOnly": "npm run build && echo \"#!/usr/bin/env node\n$(cat dist/index.js)\" > dist/index.js && chmod +x dist/index.js"
},
"bin": {
"bromato": "dist/index.js"
},
"files": [
"dist",
"bromato_logo.png"
],
"keywords": [
"n8n",
"automation",
"browser",
"playwright",
"scraping",
"crawling"
],
"author": "David Gyori",
"license": "Apache-2.0",
"packageManager": "pnpm@10.15.1",
"dependencies": {
"@crosscopy/clipboard": "^0.2.8",
"@paralleldrive/cuid2": "^2.2.2",
"cheerio": "^1.1.2",
"commander": "^14.0.1",
"fastify": "^5.6.0",
"fs-extra": "^11.3.2",
"get-port": "^7.1.0",
"http-status-codes": "^2.3.0",
"localtunnel": "^2.0.2",
"node-html-markdown": "^1.3.0",
"patchright": "^1.55.1",
"pino": "^9.9.5",
"rimraf": "^6.0.1",
"zod": "^4.1.8"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/localtunnel": "^2.0.4",
"@types/node": "^24.4.0",
"eslint": "^9.35.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}