-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 4.66 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 4.66 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
{
"name": "puppetgram",
"version": "1.0.0",
"description": "Автоматизация Telegram с AI: управление каналами, комментирование, фильтрация контента. TypeScript + GramJS + DeepSeek",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"session:generate": "ts-node src/scripts/account/generateSession.ts",
"session:convert-tdata": "ts-node src/scripts/account/convertTdataToSession.ts",
"session:check-tdata": "ts-node src/scripts/account/checkTdataSession.ts",
"session:convert-sqlite": "ts-node src/scripts/account/convertSqliteSession.ts",
"session:generate-usa": "ts-node src/scripts/account/generateSessionUSA.ts",
"message:listen": "ts-node src/scripts/messaging/listenMessages.ts",
"account:set-username": "ts-node src/scripts/account/setUsername.ts",
"account:setup-2fa": "ts-node src/scripts/account/setup2FA.ts",
"profile:setup": "ts-node src/scripts/profile/setupProfile.ts",
"profile:update": "ts-node src/scripts/profile/updateProfile.ts",
"profile:update-usa": "ts-node src/scripts/profile/updateProfileUSA.ts",
"channel:transfer": "ts-node src/scripts/channel/easyTransferChannel.ts",
"channel:join": "ts-node src/scripts/channel/joinChannels.ts",
"channel:merge": "ts-node src/scripts/channel/mergeAllChannels.ts",
"channels:import": "ts-node src/scripts/channel/importChannels.ts",
"comment:check": "ts-node src/scripts/commenting/checkComments.ts",
"comment:post-ai": "ts-node src/scripts/commenting/postCommentsWithAI.ts",
"comment:auto": "ts-node src/app/commenting/scripts/autoCommentSimple.ts",
"comment:profile": "ts-node src/app/commenting/scripts/autoCommentProfile.ts",
"comment:usa": "ts-node src/app/commenting/scripts/autoCommentUSA.ts",
"parse:channel": "ts-node src/scripts/analysis/parseChannel.ts",
"parse:similar": "ts-node src/scripts/analysis/parseSimilarChannels.ts",
"parse:sources": "ts-node src/scripts/analysis/parseSourcesList.ts",
"parse:dialogs": "ts-node src/scripts/analysis/parseDialogs.ts",
"parse:subscribed-channels": "ts-node src/scripts/analysis/parseSubscribedChannels.ts",
"filter:ai": "ts-node src/scripts/analysis/filterChannelsWithAI.ts",
"filter:auto": "ts-node src/scripts/analysis/autoFilterChannels.ts",
"filter:groups": "ts-node src/scripts/analysis/autoFilterGroups.ts",
"find:similar": "ts-node src/scripts/analysis/findSimilarChannels.ts",
"analyze:posts": "ts-node src/scripts/analysis/analyzeTopPosts.ts",
"generate:twitter": "ts-node src/scripts/integrations/generateTwitterContent.ts",
"test:postmypost": "ts-node src/scripts/integrations/testPostMyPostAPI.ts",
"integration:twitter": "ts-node src/scripts/integrations/scheduleTwitterPosts.ts",
"integration:postmypost": "ts-node src/scripts/integrations/postMyPostProjectManager.ts",
"utils:clean-channels": "ts-node src/scripts/utils/cleanSuccessfulChannels.ts",
"utils:test-database": "ts-node src/scripts/utils/testChannelDatabase.ts",
"utils:test-multilevel": "ts-node src/scripts/utils/testMultilevelParsing.ts",
"utils:test-accounts": "ts-node src/scripts/utils/testAccountSelection.ts",
"test:dialog-send": "ts-node src/app/reporter/scripts/testDialogSend.ts",
"test:proxy": "ts-node src/scripts/proxy/testProxyConnection.ts",
"monitor:watchdog": "ts-node src/scripts/monitoring/watchdog.ts",
"webhook:setup": "bun run scripts/setup-webhook.ts",
"webhook:info": "bun run scripts/setup-webhook.ts --info",
"webhook:delete": "bun run scripts/setup-webhook.ts --delete"
},
"keywords": [
"telegram",
"automation",
"ai",
"typescript",
"gramjs",
"deepseek",
"openai",
"userbot",
"multi-account",
"channel-management",
"content-filtering",
"telegram-bot"
],
"author": "litury",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/litury/puppetgram.git"
},
"bugs": {
"url": "https://github.com/litury/puppetgram/issues"
},
"homepage": "https://github.com/litury/puppetgram#readme",
"dependencies": {
"@types/node": "^22.10.7",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.45.1",
"pg": "^8.13.1",
"fdy-convertor": "^1.0.4",
"openai": "^5.8.2",
"pino": "^10.1.0",
"prompts": "^2.4.2",
"socks": "^2.8.7",
"telegram": "^2.26.16",
"typescript": "^5.7.3",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/pg": "^8.11.10",
"@types/prompts": "^2.4.9",
"drizzle-kit": "^0.31.8",
"nodemon": "^3.1.9",
"pino-pretty": "^13.1.2",
"sharp": "^0.34.5"
}
}