-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "pump-proxy-viewer",
"version": "1.0.0",
"description": "PumpFun stream viewer emulation tool with proxy support",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --trace-warnings src/index.js",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop ecosystem.config.js",
"pm2:reload": "pm2 reload ecosystem.config.js"
},
"keywords": [
"puppeteer",
"proxy",
"automation",
"pumpfun",
"viewer-bot"
],
"author": "",
"license": "MIT",
"dependencies": {
"color-name": "^2.0.0",
"error-ex": "^1.3.2",
"http-proxy-agent": "^7.0.0",
"https-proxy-agent": "^7.0.2",
"pm2": "^5.3.0",
"puppeteer": "^21.5.2",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"puppeteer-extra-plugin-user-preferences": "^2.4.1",
"random-useragent": "^0.5.0",
"socks-proxy-agent": "^8.0.2",
"winston": "^3.11.0"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=16.0.0"
}
}