-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.55 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.55 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
{
"name": "em-dash",
"version": "3.2.0",
"description": "Open-source compliance audit suite for Claude Code. HIPAA interview assessments + automated cloud/code scanning + policy-as-code + actionable remediation.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aanishs/em-dash.git"
},
"type": "module",
"scripts": {
"build": "bun run gen:skill-docs",
"gen:skill-docs": "bun run scripts/gen-skill-docs.ts",
"test": "bun test test/skill-validation.test.ts test/rego-policy.test.ts test/bin-smoke.test.ts test/touchfiles.test.ts test/architecture.test.ts test/comply-start.test.ts test/codex-generation.test.ts test/codex-setup.test.ts test/codex-smoke.test.ts",
"test:evals": "EVALS=1 bun test test/skill-e2e.test.ts",
"test:evals:all": "EVALS_ALL=1 bun test test/skill-e2e.test.ts",
"skill:check": "bun run scripts/skill-check.ts",
"dev:skill": "bun run scripts/dev-skill.ts",
"eval:list": "bun run scripts/eval-list.ts",
"eval:select": "bun run scripts/eval-select.ts",
"eval:compare": "bun run scripts/eval-compare.ts",
"eval:summary": "bun run scripts/eval-summary.ts",
"dashboard": "bun run scripts/dashboard-server.ts"
},
"engines": {
"bun": ">=1.0.0"
},
"keywords": [
"hipaa",
"compliance",
"audit",
"healthcare",
"claude",
"ai-agent",
"security"
],
"dependencies": {
"canonicalize": "^2.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"bun-types": "^1.3.11",
"knip": "^6.3.0",
"typescript": "^6.0.2"
}
}