forked from gommzystudio/device-activity-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.55 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
{
"name": "device-activity-tracker",
"version": "1.0.0",
"type": "module",
"description": "A proof-of-concept tool demonstrating privacy vulnerabilities in messaging apps through RTT-based activity analysis",
"main": "dist/index.js",
"keywords": [
"whatsapp",
"signal",
"privacy",
"security",
"research",
"tracking",
"rtt",
"device-activity",
"proof-of-concept"
],
"author": "Gommzy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gommzystudio/device-activity-tracker.git"
},
"bugs": {
"url": "https://github.com/gommzystudio/device-activity-tracker/issues"
},
"homepage": "https://github.com/gommzystudio/device-activity-tracker#readme",
"scripts": {
"build": "tsc",
"start": "npx tsx src/index.ts",
"start:server": "npm run start:signal-api && npx tsx src/server.ts",
"start:signal-api": "npx tsx src/scripts/init-signal.ts",
"start:client": "cd client && npm start",
"dev": "npm run start:server",
"postinstall": "cd client && npm install"
},
"dependencies": {
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"cors": "^2.8.5",
"express": "^5.0.1",
"pdf-parse": "^1.1.1",
"pino": "^10.1.0",
"qrcode-terminal": "^0.12.0",
"socket.io": "^4.8.1",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.18.1",
"tailwindcss": "^3.4.18",
"tsx": "^4.21.0",
"typescript": "^5.7.2"
},
"private": true
}