-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.4 KB
/
package.json
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
{
"name": "hmt",
"bin": "./src/cli.ts",
"config": {
"displayName": "HopMyTrack"
},
"description": "HopMyTrack is an OSINT (Open Source Intelligence) tool that allows you to find every social media profile of a person using known info.",
"keywords": [
"osint",
"social media",
"profile",
"person",
"info",
"intelligence",
"tool"
],
"version": "0.1.23",
"author": {
"name": "gastonchenet",
"email": "contact@gastonchenet.fr",
"url": "https://gastonchenet.fr"
},
"homepage": "https:/github.com/gastonchenet/hopmytrack#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gastonchenet/hopmytrack.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gastonchenet/hopmytrack/issues",
"email": "contact@gastonchenet.fr"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/gastonchenet"
},
"private": false,
"module": "./src/cli.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest",
"@types/figlet": "^1.7.0",
"@types/user-agents": "^1.0.4",
"cross-env": "^7.0.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"build": "bun run build:lin:x64 && bun run build:lin:aarch64 && bun run build:dar:x64 && bun run build:dar:aarch64 && bun run build:win:x64",
"build:lin:x64": "bun build --compile --target=bun-linux-x64 --minify --sourcemap ./src/cli.ts --outfile ./build/hopmytrack-lin-x64 --icon ./assets/icon.ico",
"build:lin:aarch64": "bun build --compile --target=bun-linux-arm64 --minify --sourcemap ./src/cli.ts --outfile ./build/hopmytrack-lin-aarch64 --icon ./assets/icon.ico",
"build:dar:x64": "bun build --compile --target=bun-darwin-x64 --minify --sourcemap ./src/cli.ts --outfile ./build/hopmytrack-dar-x64 --icon ./assets/icon.ico",
"build:dar:aarch64": "bun build --compile --target=bun-darwin-arm64 --minify --sourcemap ./src/cli.ts --outfile ./build/hopmytrack-dar-aarch64 --icon ./assets/icon.ico",
"build:win:x64": "bun build --compile --target=bun-windows-x64 --minify --sourcemap ./src/cli.ts --outfile ./build/hopmytrack-win-x64 --icon ./assets/icon.ico",
"dev": "bun run ./src/cli.ts",
"test": "bun test"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"gradient-string": "^3.0.0",
"libphonenumber-js": "^1.11.0",
"moment": "^2.30.1",
"node-html-parser": "^6.1.13",
"read-yaml-file": "^2.1.0",
"ts-node": "^10.9.2",
"user-agents": "^1.1.195"
}
}