-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 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
{
"name": "@automagik-dev/aegis",
"version": "0.1.2",
"description": "npm supply-chain incident-response CLI — scan, fix, remediate, verify. Published via GitHub Packages only (trust-model decision after the April 2026 CanisterWorm incident). Spun out of @automagik/genie sec.",
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"type": "module",
"bin": {
"aegis": "./dist/cli.js"
},
"scripts": {
"build": "bun build src/cli/index.ts --target=node --outfile=dist/cli.js --banner='#!/usr/bin/env node' && chmod +x dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "biome check src",
"format": "biome format src --write",
"verify:release": "scripts/verify-release.sh"
},
"files": [
"dist/",
"scripts/aegis-scan.cjs",
"scripts/aegis-remediate.cjs",
"signatures/",
"schemas/",
"README.md",
"LICENSE",
"SECURITY.md"
],
"keywords": [
"security",
"npm",
"supply-chain",
"incident-response",
"malware-scanner",
"cli"
],
"author": "Namastex Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/automagik-dev/aegis.git"
},
"bugs": {
"url": "https://github.com/automagik-dev/aegis/issues"
},
"homepage": "https://github.com/automagik-dev/aegis#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.5",
"typescript": "^5.7.3"
}
}