-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"name": "evidence-map",
"version": "0.1.0",
"description": "Portable Evidence Map kit for source-grounded AI deliverables.",
"license": "MIT",
"type": "module",
"author": "Matt Weigand",
"repository": {
"type": "git",
"url": "git+https://github.com/mattdweigand-sketch/evidence-map.git"
},
"bugs": {
"url": "https://github.com/mattdweigand-sketch/evidence-map/issues"
},
"homepage": "https://mattdweigand-sketch.github.io/evidence-map/",
"engines": {
"node": ">=20"
},
"files": [
".Codex/commands",
"docs",
"examples",
"kits",
"prompts",
"schemas",
"scripts",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"SECURITY.md",
"CODE_OF_CONDUCT.md"
],
"keywords": [
"ai",
"audit",
"evidence",
"office",
"provenance",
"source-grounded",
"verification"
],
"scripts": {
"setup": "node scripts/setup.js",
"kickoff": "node scripts/kickoff.js",
"validate:setup-check": "node scripts/validate-setup-check.js",
"validate:source-packet": "node scripts/validate-source-packet.js examples/diligence-folder/source-packet.json",
"validate:evidence-map": "node scripts/validate-evidence-map.js examples/board-deck/evidence-map.json",
"validate:questionnaire-workbook": "node scripts/validate-evidence-map.js examples/questionnaire-workbook/answer-evidence-map.json",
"validate:examples": "npm run validate:source-packet && npm run validate:evidence-map && npm run validate:questionnaire-workbook",
"test": "npm run validate:examples"
}
}