ship-safe 2.0.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,50 @@
1
+ # .ship-safeignore
2
+ # =================
3
+ # Exclude paths from ship-safe secret scanning.
4
+ # Same syntax as .gitignore — one pattern per line, # for comments.
5
+ #
6
+ # Ship-safe already skips test files by default.
7
+ # Use this file to exclude additional paths that generate false positives.
8
+ #
9
+ # USAGE:
10
+ # Copy this file to your project root as .ship-safeignore
11
+ # Then run: npx ship-safe scan .
12
+
13
+ # ── Examples ──────────────────────────────────────────────────────────────────
14
+
15
+ # Exclude a specific file
16
+ # config/seed-data.js
17
+
18
+ # Exclude a directory
19
+ # scripts/fixtures/
20
+
21
+ # Exclude all files matching a pattern
22
+ # **/*.example.js
23
+ # **/*.sample.*
24
+
25
+ # Exclude documentation that contains example credentials
26
+ # docs/
27
+ # *.md
28
+
29
+ # Exclude generated files
30
+ # generated/
31
+ # prisma/migrations/
32
+
33
+ # Exclude vendor/third-party code not in node_modules
34
+ # vendor/
35
+ # third-party/
36
+
37
+ # ── Common false positive sources ─────────────────────────────────────────────
38
+
39
+ # E2E test fixtures (ship-safe skips unit tests but not e2e by default)
40
+ # e2e/
41
+ # cypress/fixtures/
42
+ # playwright/
43
+
44
+ # Seed data with example values
45
+ # prisma/seed.ts
46
+ # database/seeds/
47
+
48
+ # Infrastructure-as-code with example configs
49
+ # terraform/examples/
50
+ # .terraform/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ship-safe",
3
- "version": "2.0.0",
3
+ "version": "3.0.0",
4
4
  "description": "Security toolkit for vibe coders and indie hackers. Secure your MVP in 5 minutes.",
5
5
  "main": "cli/index.js",
6
6
  "bin": {