-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.08 KB
/
package.json
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
{
"name": "@webwriter/network",
"version": "2.0.6",
"description": "Visualization of network topologies. Can represent different kinds of networks.",
"keywords": [
"webwriter-widget",
"widget-conceptual",
"widget-simulational",
"widget-lang-en",
"isced2011-3",
"isced2011-4",
"isced2011-5",
"isced2011-6",
"iscedf2013-06",
"topology",
"networks",
"routing"
],
"license": "MIT",
"author": "Jorik van Genuchten",
"scripts": {
"prepublishOnly": "npx @webwriter/build"
},
"dependencies": {
"@shoelace-style/shoelace": "^2.16.0",
"@types/cytoscape": "^3.21.7",
"@types/node": "^18.19.47",
"@webwriter/lit": "^2.0.0",
"cytoscape": "^3.30.2",
"cytoscape-compound-drag-and-drop": "^1.1.0",
"cytoscape-context-menus": "^4.2.1",
"cytoscape-edgehandles": "^4.0.1",
"cytoscape-node-html-label": "^1.2.2",
"konva": "7.0.3",
"lit": "^3.2.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/code-frame": "^7.24.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5",
"vite": "^3.2.10"
},
"exports": {
"./widgets/ww-network.*": {
"source": "./src/index.ts",
"default": "./dist/widgets/ww-network.*"
},
"./snippets/simple-network.html": "./snippets/simple-network.html",
"./snippets/complex-network.html": "./snippets/complex-network.html",
"./snippets/triple-network.html": "./snippets/triple-network.html",
"./package.json": "./package.json",
"./icon": "./icon.svg"
},
"editingConfig": {
".": {
"description": {
"de": "Visualisierung von Netzwerktopologien. Kann verschiedene Arten von Netzwerken darstellen."
}
},
"./widgets/ww-network": {
"label": {
"_": "Computer Network"
}
}
}
}