-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 781 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 781 Bytes
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
{
"name": "jobscout",
"version": "1.0.0",
"description": "Job Scout - Automated job search using Browserbase Stagehand and Streak CRM integration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"clean": "rm -rf dist",
"test": "jest"
},
"keywords": [
"job-search",
"automation",
"browserbase",
"streak",
"stagehand"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"dependencies": {
"@browserbasehq/sdk": "^2.6.0",
"@browserbasehq/stagehand": "^2.4.3",
"commander": "^11.1.0",
"dotenv": "^16.3.0",
"zod": "^3.23.8"
}
}