-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.67 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
{
"name": "bc-atlas",
"version": "0.5.0",
"description": "BC Atlas generates D2 architecture diagrams and executable user documentation for Microsoft Dynamics 365 Business Central.",
"homepage": "https://github.com/SchulzOli/ALD2Tree#readme",
"bugs": {
"url": "https://github.com/SchulzOli/ALD2Tree/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SchulzOli/ALD2Tree.git"
},
"type": "module",
"bin": {
"bca": "./src/cli.js",
"bca-mcp": "./src/mcp.js"
},
"files": [
"src/",
"scripts/",
"vendor/",
"examples/",
"docs/",
".bca.example.json",
"LICENSE",
"README.md",
"THIRD_PARTY_NOTICES.md"
],
"scripts": {
"start": "node ./src/cli.js",
"test": "node --test",
"check": "node --check src/cli.js && node --check src/mcp.js && node --check src/analyzer.js && node --check src/architecture.js && node --check src/call-analysis.js && node --check src/capabilities.js && node --check src/codegraph.js && node --check src/config.js && node --check src/d2.js && node --check src/insights.js && node --check src/operation-semantics.js && node --check src/permission-semantics.js && node --check src/relation-aggregation.js && node --check src/resolver.js && node --check src/symbols.js && node --check src/svg.js && node --check src/views.js && node --check src/workflow.js && node --check src/docs/automation.js && node --check src/docs/cli.js && node --check src/docs/markdown.js && node --check src/docs/al-ui-source.js && node --check src/docs/al-ui-writer.js && node --check src/docs/model.js && node --check src/docs/server.js && node --check src/docs/tags.js && node --check src/docs/web/app.js && node --check scripts/generate-examples.js && node --check scripts/generate-docs.js && npm run docs:check",
"mcp": "node ./src/mcp.js",
"docs": "node ./scripts/generate-docs.js",
"docs:check": "node ./scripts/generate-docs.js --check",
"examples": "node ./scripts/generate-examples.js",
"prepack": "npm run check && npm test",
"update:grammar": "node ./scripts/update-grammar.js"
},
"keywords": [
"al",
"business-central",
"d2",
"architecture",
"dependency-graph",
"documentation",
"dynamics-365",
"static-analysis",
"tree-sitter"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/server": "^2.0.0",
"@terrastruct/d2": "^0.1.33",
"dompurify": "^3.4.13",
"fflate": "^0.8.3",
"marked": "^18.0.9",
"web-tree-sitter": "^0.25.10",
"zod": "^4.4.3"
},
"devDependencies": {
"@modelcontextprotocol/client": "^2.0.0"
}
}