-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1002 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1002 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
36
37
38
39
40
41
{
"name": "idea-miner",
"version": "0.1.0",
"description": "AI agent for mining product ideas from Chrome Web Store, Product Hunt, and other sources",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node --env-file=.env dist/index.js",
"dev": "tsx --env-file=.env src/index.ts",
"mine": "tsx --env-file=.env src/index.ts",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ai",
"browser-automation",
"idea-mining",
"stagehand",
"product-research"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@browserbasehq/stagehand": "^2.3.0",
"google-trends-api": "^4.9.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^22.10.2",
"eslint": "^9.16.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.49.0"
},
"engines": {
"node": ">=20.0.0"
}
}