-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.05 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
{
"name": "@webwriter/flowchart",
"version": "2.0.8",
"description": "Create programming flowcharts with interactive tasks. Use standardized Elements such as loops and Branchings.",
"keywords": [
"webwriter-widget",
"widget-presentational",
"widget-informational",
"widget-lang-de",
"iscedf2013-01",
"iscedf2013-02",
"iscedf2013-03",
"iscedf2013-04",
"iscedf2013-05",
"iscedf2013-06",
"iscedf2013-07",
"iscedf2013-08",
"iscedf2013-09",
"iscedf2013-10",
"isced2011-1",
"isced2011-2",
"isced2011-3",
"isced2011-4",
"isced2011-5",
"isced2011-6",
"isced2011-7",
"isced2011-8",
"flowchart",
"progression",
"logic"
],
"license": "MIT",
"author": "Kevin Lu",
"scripts": {
"prepublishOnly": "npx @webwriter/build"
},
"dependencies": {
"@webwriter/lit": "^2.0.0",
"axios": ">=1.4.0 <2.0.0-0",
"dotenv": ">=16.1.4 <17.0.0-0",
"lit": ">=3.0.0 <4.0.0-0",
"uuid": ">=9.0.0 <10.0.0-0"
},
"devDependencies": {
"typescript": ">=4.8.4 <5.0.0-0",
"vite": ">=3.1.6 <4.0.0-0"
},
"exports": {
"./widgets/webwriter-flowchart.*": {
"source": "./index.ts",
"default": "./dist/widgets/webwriter-flowchart.*"
},
"./snippets/Erklaerung.html": "./snippets/Erklaerung.html",
"./snippets/For-Schleife.html": "./snippets/For-Schleife.html",
"./snippets/If-Else.html": "./snippets/If-Else.html",
"./snippets/Switch.html": "./snippets/Switch.html",
"./snippets/Kontextbeispiel.html": "./snippets/Kontextbeispiel.html",
"./package.json": "./package.json",
"./icon": "./icon.svg"
},
"editingConfig": {
".": {
"description": {
"de": "Erstellung von Flussdiagrammen zur Programmierung mit standardisierten Elementen wie Schleifen und Verzweigungen."
}
}
}
}