-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 983 Bytes
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
{
"name": "deanonymizer",
"version": "0.1.0",
"description": "deanonymizer — consent-based privacy exposure auditor for your own Reddit / Hacker News footprint. Shows what an attacker could infer about you so you can scrub it.",
"type": "module",
"bin": {
"audit": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"audit": "tsx src/index.ts",
"start": "tsx src/index.ts",
"test": "tsx --test $(find src -name '*.test.ts')",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.100.1",
"commander": "^12.1.0",
"openai": "^4.104.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.10.0",
"eslint": "^9.39.4",
"prettier": "^3.8.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.60.1"
}
}