-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.83 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
{
"name": "blue-spec",
"version": "0.4.0",
"description": "🌊 Blue Spec is a toolkit for Security-Driven Hardening, a defensive workflow to help AI agents detect what a system does and harden the defenses that matter.",
"license": "MIT",
"type": "module",
"bin": {
"blue-spec": "lib/bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wellwelwel/blue-spec.git"
},
"homepage": "https://bluespec.weslley.io",
"bugs": {
"url": "https://github.com/wellwelwel/blue-spec/issues"
},
"author": "https://github.com/wellwelwel",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wellwelwel"
},
"files": [
"lib",
"spec"
],
"engines": {
"node": ">=22.x.x"
},
"scripts": {
"build": "bash scripts/build.sh",
"typecheck": "bash scripts/typecheck.sh",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"tokens": "tsx tools/count-tokens.ts",
"pretest": "bash scripts/build.sh",
"test": "poku",
"test:bun": "bun --bun poku"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/node": "^25.9.3",
"concurrently": "^10.0.3",
"esbuild": "^0.28.1",
"poku": "^4.4.0",
"prettier": "^3.8.4",
"tiktoken": "^1.0.22",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"yaml.min": "^1.0.0"
},
"keywords": [
"ai",
"security",
"blue-team",
"spec",
"sdh",
"sdd",
"audit",
"hardening",
"plan",
"node",
"bun",
"deno",
"typescript",
"cli",
"security-driven-hardening",
"spec-driven-development",
"agent-skills",
"ia-driven",
"prompt-engineering",
"llm",
"prompt-toolkit",
"claude-code",
"codex",
"copilot",
"cursor-ai",
"superpowers",
"spec-kit",
"openspec"
]
}