-
Notifications
You must be signed in to change notification settings - Fork 817
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.75 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.75 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "riona-ai-agent",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"start": "npx tsc && npm run postbuild && node build/index.js",
"postbuild": "copyfiles -u 3 src/Agent/characters/*.json build/Agent/characters",
"train:link": "tsc && node build/Agent/training/WebsiteScraping.js",
"train:audio": "tsc && node build/Agent/training/TrainWithAudio.js",
"train:youtube": "tsc && node build/Agent/training/youtubeURL.js",
"test": "jest",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check:env": "node scripts/check-env.js",
"setup": "node scripts/setup.js",
"recaptcha:dev": "TS_NODE_PROJECT=riona-recaptcha-model/tsconfig.json ts-node -r tsconfig-paths/register riona-recaptcha-model/src/scripts/start.ts",
"recaptcha:train": "TS_NODE_PROJECT=riona-recaptcha-model/tsconfig.json ts-node -r tsconfig-paths/register riona-recaptcha-model/src/scripts/train.ts",
"recaptcha:collect": "TS_NODE_PROJECT=riona-recaptcha-model/tsconfig.json ts-node -r tsconfig-paths/register riona-recaptcha-model/src/scripts/collect_data.ts",
"recaptcha:build": "tsc -p riona-recaptcha-model/tsconfig.json && tsc-alias -p riona-recaptcha-model/tsconfig.json",
"recaptcha:serve": "node riona-recaptcha-model/dist/scripts/start.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "Riona-AI-Agent is an AI-powered automation tool designed to interact with various social media platforms.",
"dependencies": {
"@google/genai": "^1.45.0",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-node": "^4.22.0",
"axios": "^1.13.6",
"canvas": "^3.1.0",
"cookie-parser": "^1.4.7",
"copyfiles": "^2.4.1",
"cors": "^2.8.6",
"cron": "^4.4.0",
"csv-parser": "^3.2.0",
"dompurify": "^3.3.3",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"helmet": "^8.1.0",
"instagram-private-api": "^1.46.1",
"jsdom": "^29.0.0",
"jsonwebtoken": "^9.0.3",
"mammoth": "^1.12.0",
"moment": "^2.30.1",
"mongoose": "^9.3.0",
"multer": "^2.0.0",
"node-cron": "^4.2.1",
"openai": "^6.16.0",
"pdf-parse": "^2.4.5",
"playwright": "^1.58.2",
"playwright-extra": "^4.3.6",
"proxy-chain": "^2.7.1",
"puppeteer": "^24.39.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"readline-sync": "^1.4.10",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"socket.io": "^4.8.3",
"textract": "^2.5.0",
"twitter-api-v2": "^1.29.0",
"typescript": "^5.9.3",
"user-agents": "^1.1.674",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"youtube-transcript": "^1.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/jest": "^30.0.0",
"@types/jsdom": "^28.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/mime-types": "^3.0.1",
"@types/multer": "^1.4.11",
"@types/pdf-parse": "^1.1.5",
"@types/puppeteer": "^7.0.4",
"@types/readline-sync": "^1.4.8",
"@types/request": "^2.48.13",
"@types/textract": "^2.4.5",
"@types/user-agents": "^1.0.4",
"eslint-config-prettier": "^10.1.8",
"eslint": "^10.0.3",
"jest": "^30.3.0",
"nodemon": "^3.1.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"ts-jest": "^29.4.6"
}
}