-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 3.17 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
{
"name": "fde-guide",
"version": "1.20.0",
"description": "An FDE and applied AI engineering guide for field discovery, accountable adaptation, measurable value, and production systems.",
"private": true,
"license": "Apache-2.0",
"author": {
"name": "David Ahmann",
"url": "https://www.linkedin.com/in/dahmann/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidahmann/fde-guide.git"
},
"bugs": {
"url": "https://github.com/davidahmann/fde-guide/issues"
},
"homepage": "https://davidahmann.github.io/fde-guide/",
"keywords": [
"fde",
"value-engineering",
"software-architecture",
"production-ai",
"ai-systems",
"ai-agents",
"agent-skills",
"evaluation",
"ai-security",
"observability"
],
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build:site": "node scripts/build-site.mjs",
"validate": "node scripts/validate-repository.mjs",
"test:markdown": "node --test tests/markdown-anchors.test.mjs",
"test:paths": "node --test tests/repository-paths.test.mjs",
"test:repository": "node --test tests/repository-validation.test.mjs",
"test:contracts": "node --test tests/schema-contracts.test.mjs",
"test:tool-security": "node --test tests/tool-security.test.mjs",
"test:telemetry": "node --test tests/telemetry-contracts.test.mjs",
"test:governance": "node --test tests/governance-contracts.test.mjs",
"test:release-integrity": "node --test tests/release-integrity.test.mjs",
"test:release-gates": "node --test tests/release-gate-mappings.test.mjs",
"test:solutions": "node --test tests/reference-solutions.test.mjs",
"test:value-framework": "node --test tests/value-engineering-framework.test.mjs",
"test:data-readiness": "node --test tests/data-readiness.test.mjs",
"test:field-practice": "node --test tests/field-engagement.test.mjs",
"test:production-readiness": "node --test tests/production-service-readiness.test.mjs",
"test:skills": "node --test tests/skills.test.mjs",
"test:policy": "node --test examples/invoice-exception/authorization-policy.test.mjs",
"test:reference": "node --test examples/invoice-exception/reference-loop.test.mjs",
"test:evals": "node --test examples/invoice-exception/run-evals.test.mjs",
"test:hybrid": "node --test examples/shipment-risk-triage/shipment-risk-triage.test.mjs",
"test:site": "npm run build:site && node --test tests/site.test.mjs",
"test": "npm run validate && npm run test:markdown && npm run test:paths && npm run test:repository && npm run test:contracts && npm run test:tool-security && npm run test:telemetry && npm run test:governance && npm run test:release-integrity && npm run test:release-gates && npm run test:solutions && npm run test:value-framework && npm run test:data-readiness && npm run test:field-practice && npm run test:production-readiness && npm run test:skills && npm run test:policy && npm run test:reference && npm run test:evals && npm run test:hybrid && npm run test:site"
},
"devDependencies": {
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"markdown-it": "15.0.0",
"markdown-it-anchor": "9.2.1",
"mermaid": "11.16.1"
}
}