-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.74 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.74 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
{
"name": "vanish",
"version": "0.3.0",
"description": "Open-source privacy scanner + opt-out orchestrator covering 210 data brokers, 30 AI training platforms, 8 face-search services, 13 third-party AI tools (incl. workforce-monitoring agents), 12 NCII-takedown destinations, plus LLM memorization probing, training-dataset membership checks, and AI history cleanup. Free alternative to DeleteMe / Optery / Incogni that also covers AI-era threats they don't. Local-first, audit-signed, MIT-licensed.",
"keywords": [
"privacy",
"data-broker",
"opt-out",
"deleteme-alternative",
"optery-alternative",
"incogni-alternative",
"gdpr",
"ccpa",
"bipa",
"privacy-scanner",
"data-removal",
"personal-data",
"self-hosted",
"local-first",
"open-source",
"ai-privacy",
"ai-training-opt-out",
"llm-memorization",
"training-dataset-membership",
"common-crawl",
"face-search",
"pimeyes-alternative",
"clearview-ai",
"stopncii",
"ncii",
"dmca",
"revenge-porn-helpline",
"workforce-monitoring",
"employee-surveillance",
"activtrak",
"teramind",
"spokeo",
"whitepages",
"beenverified",
"cli",
"nodejs",
"privacy-tools",
"audit-trail",
"hmac-signed"
],
"homepage": "https://github.com/RAMBOXIE/vanish#readme",
"bugs": {
"url": "https://github.com/RAMBOXIE/vanish/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RAMBOXIE/vanish.git"
},
"license": "MIT",
"author": "RAMBOXIE",
"type": "module",
"bin": {
"vanish": "./scripts/index.mjs",
"vanish-scan": "./scripts/scan-demo.mjs"
},
"engines": {
"node": ">=20"
},
"scripts": {
"run": "node scripts/vanish.mjs",
"quick": "node scripts/vanish.mjs quick",
"dry": "node scripts/vanish.mjs --manual --keywords \"demo\" --sample-file ./examples/sample.json --confirm1 YES --confirm2 YES --confirm3 YES --export-before-delete ask --export-answer no --notify none",
"b1:demo": "node scripts/b1-demo.mjs",
"b1:live": "node scripts/b1-live.mjs run --live",
"queue": "node scripts/queue-cli.mjs",
"wizard:demo": "node scripts/wizard-demo.mjs",
"scan:demo": "node scripts/scan-demo.mjs",
"dashboard:build-data": "node scripts/build-dashboard-data.mjs",
"dashboard:watch": "node scripts/dashboard-watch.mjs",
"report:proof": "node scripts/generate-proof-report.mjs",
"test": "node tests/vanish.test.mjs && node tests/b1-queue.test.mjs && node tests/quick-presets-report.test.mjs && node tests/wizard-engine.test.mjs && node tests/real-loop.test.mjs && node tests/secret-store.test.mjs && node tests/queue-hardening.test.mjs && node tests/queue-cli.test.mjs && node tests/audit-signature.test.mjs && node tests/official-endpoint-compliance.test.mjs && node tests/live-broker-factory.test.mjs && node tests/live-e2e-echo.test.mjs && node tests/catalog-registry.test.mjs && node tests/scan-scoring.test.mjs && node tests/scan-engine.test.mjs && node tests/scan-wizard-integration.test.mjs && node tests/opt-out.test.mjs && node tests/verify.test.mjs && node tests/share-card.test.mjs && node tests/ai-scan.test.mjs && node tests/ai-opt-out.test.mjs && node tests/face-scan.test.mjs && node tests/llm-memory-check.test.mjs && node tests/clean-ai-history.test.mjs && node tests/dataset-check.test.mjs && node tests/third-party-ai.test.mjs && node tests/takedown.test.mjs && node tests/command-manifest.test.mjs && node tests/readme-manifest-compliance.test.mjs && node tests/skill-compliance.test.mjs",
"test:b1": "node tests/b1-queue.test.mjs && node tests/real-loop.test.mjs"
},
"files": [
"scripts/",
"src/",
"prompts/",
"templates/",
"examples/",
"dashboard/",
"LICENSE",
"README.md"
]
}