-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.01 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
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
{
"name": "@webwriter/automaton",
"version": "2.0.5",
"description": "Build, visualize and interactive automata of different kinds (DFA, NFA, PDA).",
"keywords": [
"webwriter-widget",
"widget-simulational",
"widget-conceptual",
"widget-lang-en",
"iscedf2013-06",
"isced2011-3",
"isced2011-6",
"automaton",
"NFA",
"DFA",
"PDA"
],
"license": "MIT",
"author": "Jorik van Genuchten",
"scripts": {
"prepublishOnly": "npx @webwriter/build"
},
"dependencies": {
"@shoelace-style/shoelace": "^2.17.1",
"@webwriter/lit": "^2.0.0",
"lit": "^3.2.0",
"lodash": "^4.17.21",
"randexp": "^0.5.3",
"uuid": "^9.0.1",
"vis-data": "^7.1.9",
"vis-network": "^9.1.9"
},
"devDependencies": {
"@types/lodash": "^4.17.4",
"@types/uuid": "^9.0.7"
},
"exports": {
"./widgets/webwriter-automaton.*": {
"source": "./src/index.ts",
"default": "./dist/widgets/webwriter-automaton.*"
},
"./snippets/dfa-simple.html": "./snippets/dfa/example-simple.html",
"./snippets/dfa-complex.html": "./snippets/dfa/example-complex.html",
"./snippets/nfa-simple.html": "./snippets/nfa/example-simple.html",
"./snippets/nfa-complex.html": "./snippets/nfa/example-complex.html",
"./snippets/pda-simple.html": "./snippets/pda/example-simple.html",
"./snippets/pda-complex.html": "./snippets/pda/example-complex.html",
"./icon": "./icon.svg"
},
"editingConfig": {
".": {
"description": {
"de": "Erstellung, Visualisierung und Interaktion von Automaten verschiedener Art (DEA, NEA, KA)."
}
},
"./widgets/webwriter-automaton": {
"label": {
"de": "Automat",
"en": "Automaton"
}
},
"./snippets/example": {
"label": {
"de": "Beispiel",
"en": "Example"
}
},
"./snippets/dfa-simple": {
"label": {
"de": "DEA Einfach",
"en": "DFA Simple"
}
},
"./snippets/dfa-complex": {
"label": {
"de": "DEA Komplex",
"en": "DFA Complex"
}
},
"./snippets/nfa-simple": {
"label": {
"de": "NEA Einfach",
"en": "NFA Simple"
}
},
"./snippets/nfa-complex": {
"label": {
"de": "NEA Komplex",
"en": "NFA Complex"
}
},
"./snippets/pda-simple": {
"label": {
"de": "KA Einfach",
"en": "PDA Simple"
}
},
"./snippets/pda-complex": {
"label": {
"de": "KA Komplex",
"en": "PDA Complex"
}
}
}
}