-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.25 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
{
"name": "ddex",
"version": "0.0.5",
"description": "Discord Data Explorer (ddex) — offline CLI tool that analyses a Discord GDPR data export and reports your most-used words with fuzzy clustering",
"keywords": [
"discord",
"gdpr",
"export",
"word-frequency",
"cli",
"privacy",
"analysis"
],
"author": "Osyx",
"license": "GPL-3.0-only",
"homepage": "https://github.com/Osyx/ddex#readme",
"repository": {
"type": "git",
"url": "https://github.com/Osyx/ddex.git"
},
"bugs": {
"url": "https://github.com/Osyx/ddex/issues"
},
"engines": {
"bun": ">=1.3"
},
"module": "src/index.ts",
"dependencies": {
"double-metaphone": "^2.0.1",
"fastest-levenshtein": "^1.0.16",
"stopword": "^3.1.5",
"yauzl": "^3.2.0"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/stopword": "^2.0.3",
"@types/yauzl": "^2.10.3",
"jszip": "^3.10.1",
"oxfmt": "^0.36.0",
"oxlint": "^1.50.0",
"oxlint-tsgolint": "^0.15.0",
"typescript": "^5.9.3"
},
"private": true,
"scripts": {
"build": "bun build --compile --minify src/index.ts --outfile ddex",
"build:linux-x64": "bun build --compile --minify --target=bun-linux-x64 src/index.ts --outfile dist/ddex-linux-x64",
"build:linux-arm64": "bun build --compile --minify --target=bun-linux-arm64 src/index.ts --outfile dist/ddex-linux-arm64",
"build:macos-x64": "bun build --compile --minify --target=bun-darwin-x64 src/index.ts --outfile dist/ddex-macos-x64",
"build:macos-arm64": "bun build --compile --minify --target=bun-darwin-arm64 src/index.ts --outfile dist/ddex-macos-arm64",
"build:windows-x64": "bun build --compile --minify --target=bun-windows-x64 src/index.ts --outfile dist/ddex-windows-x64.exe",
"build:all": "bun run build:linux-x64 && bun run build:linux-arm64 && bun run build:macos-x64 && bun run build:macos-arm64 && bun run build:windows-x64",
"test": "bun test tests/unit/",
"test:integration": "bun test tests/integration/",
"check": "oxlint --type-aware --type-check",
"format": "oxfmt",
"format:check": "oxfmt --check",
"ci": "bun run format:check && bun run check && bun run test && bun run test:integration",
"prepare": "lefthook install"
},
"type": "module"
}