-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.81 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
{
"name": "headless-task-server",
"version": "1.4.4",
"description": "A headless browser task manager based on Hero",
"main": "dist/index.js",
"engines": {
"node": ">=18.13"
},
"scripts": {
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"stamp": "run-script-os",
"stamp:nix": "date -u +%Y-%m-%dT%H:%M:%S > ./dist/buildtimestamp",
"stamp:win32": "windwos_generate_stamp.bat > ./dist/buildtimestamp",
"postinstall": "patch-package",
"pretest": "node ./tests/pretest.js",
"build": "tsc && npm run stamp",
"start": "node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luka-dev/headless-task-server.git"
},
"keywords": [
"headless",
"browser",
"playwright",
"puppeteer",
"task",
"automation",
"cluster",
"scrape",
"crawl",
"chrome",
"chromium",
"parse",
"hero",
"secret-agent",
"sa",
"render",
"js",
"php"
],
"author": "luka-dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/luka-dev/headless-task-server/issues"
},
"homepage": "https://github.com/luka-dev/headless-task-server#readme",
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/command-line-args": "^5.2.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@ulixee/hero": "^2.0.0-alpha.28",
"@ulixee/hero-core": "^2.0.0-alpha.28",
"@ulixee/execute-js-plugin": "^2.0.0-alpha.28",
"axios": "^1.3.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"form-data": "^4.0.0",
"fs": "^0.0.2",
"helmet": "^5.0.2",
"os": "^0.1.2",
"patch-package": "^6.5.1",
"run-script-os": "^1.1.6"
}
}