-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
193 lines (193 loc) · 5.89 KB
/
package.json
File metadata and controls
193 lines (193 loc) · 5.89 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{
"name": "projectatlas",
"displayName": "ProjectAtlas",
"description": "Unified workspace atlas: docs, diagrams, workflows, directories, symbols & call graphs – all locally rendered.",
"version": "0.2.6",
"publisher": "MantejSingh",
"author": {
"name": "ProjectAtlas Contributors"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Drago-03/ProjectAtlas"
},
"bugs": {
"url": "https://github.com/Drago-03/ProjectAtlas/issues"
},
"homepage": "https://github.com/Drago-03/ProjectAtlas#readme",
"engines": {
"vscode": ">=1.85.0"
},
"categories": [
"Visualization",
"Programming Languages",
"Other"
],
"keywords": [
"graph",
"diagram",
"mermaid",
"workflow",
"github actions",
"symbol",
"call graph",
"architecture",
"directory",
"markdown"
],
"galleryBanner": {
"color": "#0d1117",
"theme": "dark"
},
"icon": "media/icon.png",
"main": "dist/extension/extension.js",
"scripts": {
"compile": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"build:extension": "esbuild src/extension/extension.ts --bundle --platform=node --external:vscode --outfile=dist/extension/extension.js --format=cjs --minify",
"build:extension:dev": "esbuild src/extension/extension.ts --bundle --platform=node --external:vscode --outfile=dist/extension/extension.js --format=cjs --sourcemap",
"build:webview": "vite build",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:extension && npm run build:webview",
"test:unit": "npm run compile && npx mocha --reporter spec \"dist/tests/**/*.test.js\"",
"dev:webview": "vite dev --open",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write .",
"test": "npm run compile && npx mocha --reporter spec \"dist/tests/**/*.test.js\"",
"test:single": "npx mocha --reporter spec",
"lint:md": "markdownlint '**/*.md' --ignore node_modules",
"package:vsix": "npm run build && npx @vscode/vsce package --out packages/projectatlas-${npm_package_version}.vsix",
"package:verbose": "npm run build && npx @vscode/vsce --logLevel trace package --out packages/projectatlas-${npm_package_version}.vsix",
"package": "npm run package:vsix",
"release:patch": "npm run build && npx @vscode/vsce publish patch",
"release:minor": "npm run build && npx @vscode/vsce publish minor",
"release:major": "npm run build && npx @vscode/vsce publish major"
},
"contributes": {
"configuration": {
"title": "ProjectAtlas",
"properties": {
"projectAtlas.enableStatusBar": {
"type": "boolean",
"default": true,
"description": "Show ProjectAtlas status bar entry"
},
"projectAtlas.showWelcomeOnStartup": {
"type": "boolean",
"default": true,
"description": "Show ProjectAtlas walkthrough on first activation"
}
}
},
"commands": [
{
"command": "projectAtlas.open",
"title": "ProjectAtlas: Open",
"category": "ProjectAtlas"
}
],
"menus": {
"explorer/context": [
{
"command": "projectAtlas.open",
"group": "navigation@9",
"when": "resourceScheme == 'file'"
}
],
"editor/title": [
{
"command": "projectAtlas.open",
"group": "navigation@9"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "projectAtlas",
"title": "Atlas",
"icon": "media/icon.png"
}
]
},
"views": {
"projectAtlas": [
{
"id": "projectAtlasDashboard",
"name": "Project Atlas"
}
]
},
"walkthroughs": [
{
"id": "projectAtlas.getStarted",
"title": "Get Started with ProjectAtlas",
"description": "Quick steps to explore your workspace",
"steps": [
{
"id": "openPanel",
"title": "Open Atlas Panel",
"description": "Run the 'ProjectAtlas: Open' command to open the visualization panel.",
"media": {
"markdown": "Open the command palette (⌘⇧P) and search for ProjectAtlas: Open."
}
},
{
"id": "filterDirs",
"title": "Filter Directories",
"description": "Use the directory filter box to narrow large trees.",
"media": {
"markdown": "Type part of a folder name to filter the directory visualization."
}
},
{
"id": "inspectWorkflows",
"title": "Inspect Workflows",
"description": "See GitHub Actions dependencies rendered as a DAG.",
"media": {
"markdown": "Workflow jobs and needs edges appear automatically from .github/workflows."
}
}
]
}
]
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^20.11.30",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.2.1",
"@vscode/vsce": "^3.0.0",
"esbuild": "^0.21.5",
"rimraf": "^5.0.5",
"chai": "^4.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"glob": "^10.3.10",
"jsdom": "^24.0.0",
"markdownlint-cli": "^0.39.0",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"ts-morph": "^22.0.0",
"typescript": "^5.4.0",
"vite": "^5.0.11"
},
"dependencies": {
"d3": "^7.9.0",
"highlight.js": "^11.9.0",
"js-yaml": "^4.1.0",
"marked": "^12.0.1",
"mermaid": "^10.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.34.3"
}
}