-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 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
{
"name": "defense-in-depth",
"version": "0.7.0-rc.1",
"description": "Git-based governance hooks for AI coding agents. Prevents hollow artifacts, SSoT pollution, and enforces commit/branch standards.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"defense-in-depth": "dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./guards": {
"types": "./dist/guards/index.d.ts",
"import": "./dist/guards/index.js"
},
"./federation": {
"types": "./dist/federation/index.d.ts",
"import": "./dist/federation/index.js"
},
"./types": {
"types": "./dist/core/types.d.ts",
"import": "./dist/core/types.js"
},
"./errors": {
"types": "./dist/core/errors.d.ts",
"import": "./dist/core/errors.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"templates/",
"README.md",
"LICENSE"
],
"scripts": {
"pretest": "npm run build",
"build": "tsc",
"postbuild": "node -e \"require('fs').chmodSync('dist/cli/index.js', 0o755)\"",
"dev": "tsc --watch",
"test": "node --test",
"coverage": "node scripts/check-coverage.mjs",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"git-hooks",
"governance",
"ai-agents",
"code-quality",
"defense-in-depth",
"conventional-commits",
"pre-commit",
"pre-push",
"agentic-coding",
"llm-safety"
],
"author": "tamld",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tamld/defense-in-depth.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"yaml": "^2.7.1"
},
"devDependencies": {
"typescript": "^5.8.3",
"@types/node": "^22.0.0"
}
}