-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.68 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@kylebegeman/dossier",
"version": "0.6.7",
"description": "Generate polished, self-contained, agent-readable HTML dossiers and Markdown from a single JSON document model.",
"type": "module",
"license": "MIT",
"author": "Kyle Begeman",
"homepage": "https://github.com/kylebegeman/dossier#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kylebegeman/dossier.git"
},
"bugs": {
"url": "https://github.com/kylebegeman/dossier/issues"
},
"bin": {
"dossier": "bin/dossier.mjs"
},
"exports": {
".": "./src/index.mjs",
"./schema": "./schema/dossier.schema.json"
},
"files": [
"bin",
"src",
"schema",
"mcp",
"skill",
"examples/*.dossier.json",
"examples/*.workspace.json",
"examples/plugins",
"examples/packs",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "node bin/dossier.mjs build examples/*.dossier.json",
"example": "node bin/dossier.mjs build examples/sample.dossier.json",
"test": "node --test",
"serve": "node bin/dossier.mjs serve",
"site": "node scripts/build-site.mjs",
"prepublishOnly": "npm test"
},
"keywords": [
"documentation",
"html",
"markdown",
"agent",
"llm",
"static",
"brief"
],
"dependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.4",
"@codemirror/lint": "^6.9.7",
"@codemirror/search": "^6.7.1",
"@codemirror/state": "^6.7.0",
"@codemirror/view": "^6.43.4",
"@hpcc-js/wasm-graphviz": "^1.22.2",
"@lezer/common": "^1.5.2",
"@lezer/css": "^1.3.4",
"@lezer/highlight": "^1.2.3",
"@lezer/html": "^1.3.13",
"@lezer/javascript": "^1.5.4",
"@lezer/json": "^1.0.3",
"@lezer/lr": "^1.4.10",
"@lezer/markdown": "^1.6.4",
"@lezer/python": "^1.1.19",
"@lezer/yaml": "^1.0.4",
"@marijn/find-cluster-break": "^1.0.3",
"@modelcontextprotocol/sdk": "^1.29.0",
"@resvg/resvg-js": "^2.6.2",
"codemirror": "^6.0.2",
"crelt": "^1.0.7",
"docx": "^9.7.1",
"image-size": "^2.0.2",
"katex": "^0.17.0",
"shiki": "^4.3.0",
"style-mod": "^4.1.3",
"w3c-keyname": "^2.2.8"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"mermaid": "^11.16.0",
"playwright": "^1.61.1"
}
}