-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.87 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.87 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
{
"name": "@worms-ctrl/core",
"version": "1.5.2",
"private": true,
"description": "🪱 npm supply chain attack detection toolkit — Shai-Hulud 2.0 detection, defense & remediation",
"bin": {
"worms-ctrl": "./apps/cli/bin/cli.js"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"lint:check": "biome check .",
"lint:fix": "biome check --write --unsafe .",
"format": "biome format --write .",
"typecheck": "turbo typecheck",
"detect": "./packages/scripts/detect.sh",
"audit:full": "./packages/scripts/full-audit.sh",
"audit:quick": "./packages/scripts/quick-audit.sh",
"harden": "./packages/scripts/harden-npm.sh",
"docs:dev": "turbo dev --filter=@worms-ctrl/docs",
"docs:build": "turbo build --filter=@worms-ctrl/docs",
"docs:preview": "turbo preview --filter=@worms-ctrl/docs",
"cli": "turbo dev --filter=@worms-ctrl/cli",
"wiki:sync": "sfw bun run --filter=@worms-ctrl/wiki-sync sync",
"outdated": "sfw bun outdated -r",
"update": "sfw bun update -i -r",
"clean": "./scripts/clean.sh",
"clean:dry": "./scripts/clean.sh --dry-run"
},
"keywords": [
"security",
"npm",
"supply-chain",
"detection",
"malware",
"shai-worms-ctrl",
"worm",
"cybersecurity",
"ioc",
"remediation",
"defense",
"hardening",
"audit",
"scanner"
],
"author": "Miccy <support@miccy.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/miccy/worms-ctrl.git"
},
"bugs": {
"url": "https://github.com/miccy/worms-ctrl/issues"
},
"homepage": "https://github.com/miccy/worms-ctrl#readme",
"packageManager": "bun@1.1.38",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"turbo": "2.9.6"
}
}