-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.01 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.01 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "hot100ai-auto-crawler",
"version": "5.0.0",
"description": "Cloud-enabled session-based multi-profile automation with Supabase integration",
"main": "dist/hot100ai-session-automation.js",
"bin": {
"hot100-profiles": "./dist/cli/cloud-profile-cli.js",
"platform-submit": "./dist/cli/platform-submit-cli.js"
},
"scripts": {
"build": "tsc",
"build:extension": "cd browser-extension && tsc",
"build:all": "npm run build && npm run build:extension",
"submit": "npm run build && node dist/hot100ai-session-automation.js",
"monitor": "npm run build && node dist/api-monitor.js",
"profiles": "npm run build && node dist/cli/cloud-profile-cli.js",
"profiles:sync": "npm run profiles sync",
"profiles:upload": "npm run profiles upload",
"profiles:cloud": "npm run profiles cloud-list",
"profiles:stats": "npm run profiles stats",
"profiles:interactive": "npm run profiles interactive",
"cloud:org:create": "npm run profiles org:create",
"cloud:org:add": "npm run profiles org:add-member",
"cloud:share": "npm run profiles share",
"platform:submit": "npm run build && node dist/cli/platform-submit-cli.js submit",
"platform:campaign": "npm run build && node dist/cli/platform-submit-cli.js campaign",
"platform:campaigns": "npm run build && node dist/cli/platform-submit-cli.js campaigns",
"platform:queue": "npm run build && node dist/cli/platform-submit-cli.js queue",
"dev:submit": "ts-node src/hot100ai-session-automation.ts",
"dev:monitor": "ts-node src/api-monitor.ts",
"dev:profiles": "ts-node src/cli/cloud-profile-cli.ts",
"supabase:migrate": "supabase db push",
"clean": "rm -rf dist browser-extension/dist browser-profiles profiles-metadata.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"hot100.ai",
"automation",
"web-scraping",
"session-management",
"playwright",
"typescript",
"multi-profile",
"supabase",
"cloud-sync",
"collaboration"
],
"author": "",
"license": "MIT",
"dependencies": {
"@sentry/node": "^10.11.0",
"@supabase/supabase-js": "^2.39.0",
"bcryptjs": "^3.0.2",
"bull": "^4.16.5",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"express-validator": "^7.2.1",
"glob": "^10.5.0",
"helmet": "^8.1.0",
"inquirer": "^9.2.12",
"ioredis": "^5.7.0",
"jsonwebtoken": "^9.0.2",
"ora": "^5.4.1",
"playwright": "^1.40.0",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^9.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/chrome": "^0.0.254",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.6",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}