-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "@webwriter/graph",
"version": "1.0.1",
"description": "Visualize graphs, simulate common graph algorithms (Kruskal, Dijkstra, BFS, DFS, etc.), and record your own graph animations.",
"keywords": [
"webwriter",
"webwriter-widget"
],
"license": "MIT",
"author": "Ferdinand Baumgarten <ferdinand.baumgarten@rwth-aachen.de>",
"main": "ww-graph.ts",
"repository": "github:@webwriter-app/graph",
"scripts": {
"prepublishOnly": "npx @webwriter/build"
},
"dependencies": {
"@lit/context": "^1.1.6",
"@lit/localize": "^0.12.2",
"@shoelace-style/shoelace": "^2.15.1",
"@tabler/icons": "^3.36.1",
"@webwriter/lit": "^2.0.0",
"d3": "^7.6.1",
"lit": "^3.1.4"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/d3-selection": "^3.0.11",
"@types/d3-transition": "^3.0.9",
"typescript": "^6.0.2"
},
"exports": {
"./widgets/ww-graph.*": {
"source": "./ww-graph.ts",
"default": "./dist/widgets/ww-graph.*"
},
"./icon": "./icon.svg",
"./custom-elements.json": "./custom-elements.json"
},
"customElements": "custom-elements.json"
}