-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "@webwriter/logic-circuit",
"version": "1.1.3",
"description": "Create and simulate circuits with logic gates (AND, OR, XOR, etc.).",
"keywords": [
"webwriter-widget",
"widget-simulational",
"widget-conceptual",
"widget-lang-en",
"iscedf2013-06",
"iscedf2013-07",
"isced2011-2",
"isced2011-3",
"isced2011-6",
"logic",
"circuit",
"gates",
"simulation"
],
"license": "MIT",
"author": "Lukas Schneider",
"scripts": {
"prepublishOnly": "npx @webwriter/build",
"preview": "npx @webwriter/build preview webwriter-logic-circuit"
},
"dependencies": {
"@shoelace-style/shoelace": "^2.13.1",
"@webwriter/lit": "^2.1.6",
"lit": "^3.1.2"
},
"exports": {
"./widgets/webwriter-logic-circuit.*": {
"source": "./widgets/webwriter-logic-circuit.ts",
"default": "./dist/webwriter-logic-circuit.*"
},
"./snippets/halfadder.html": "./snippets/halfadder.html",
"./snippets/RS-FlipFlop.html": "./snippets/RS-FlipFlop.html",
"./icon": "./icon.svg"
},
"editingConfig": {
".": {
"description": {
"de": "Erstellen und Simulieren von Schaltungen mit logischen Gattern (AND, OR, XOR, etc.)."
}
}
}
}