-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.01 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.01 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
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
106
107
108
109
110
{
"name": "@webwriter/neural-network",
"version": "1.1.6",
"description": "Deep learning visualization for feed-forward networks with custom datasets, training and prediction.",
"keywords": [
"webwriter-widget",
"widget-simulational",
"widget-conceptual",
"widget-lang-en",
"iscedf2013-06",
"isced2011-2",
"isced2011-3",
"isced2011-4",
"isced2011-5",
"isced2011-6",
"isced2011-7",
"isced2011-8",
"neural network",
"neurons",
"training",
"predicting",
"widget-lang-de",
"widget-lang-ar",
"widget-lang-bg",
"widget-lang-cs",
"widget-lang-da",
"widget-lang-nl",
"widget-lang-et",
"widget-lang-fi",
"widget-lang-fr",
"widget-lang-el",
"widget-lang-hu",
"widget-lang-it",
"widget-lang-lv",
"widget-lang-lt",
"widget-lang-nb",
"widget-lang-pl",
"widget-lang-pt-PT",
"widget-lang-ro",
"widget-lang-ru",
"widget-lang-sk",
"widget-lang-sl",
"widget-lang-es",
"widget-lang-sv",
"widget-lang-tr",
"widget-lang-uk",
"widget-lang-pt-BR",
"widget-lang-ko",
"widget-lang-ja",
"widget-lang-id",
"widget-lang-zh-hans",
"widget-lang-zh-hant"
],
"license": "MIT",
"author": "Christian Koch",
"scripts": {
"start": "vite preview",
"create": "vite build --config vite.config.js && copyfiles index.html ./dist",
"prepublishOnly": "npx @webwriter/build"
},
"dependencies": {
"@lit/context": "^1.1.4",
"@lit/localize": "^0.12.2",
"@shoelace-style/shoelace": "^2.20.0",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-vis": "^1.5.1",
"@types/cytoscape": "^3.21.9",
"@webcomponents/scoped-custom-element-registry": "^0.0.9",
"@webwriter/create-widget": "^0.4.2",
"@webwriter/lit": "^2.1.6",
"bootstrap-icons": "^1.11.3",
"colorsea": "^1.2.2",
"cytoscape": "^3.31.1",
"lit": "^3.2.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.25.9",
"@types/wicg-file-system-access": "^2023.10.5",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@vitejs/plugin-react": "^4.3.4",
"copyfiles": "^2.4.1",
"eslint": "^9.22.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-wc": "^2.2.1",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"vite": "^5.4.14",
"vite-plugin-static-copy": "^1.0.6"
},
"optionalDependencies": {
"@rollup/rollup-win32-x64-msvc": "4.20.0"
},
"type": "module",
"exports": {
"./widgets/webwriter-neural-network.*": {
"source": "./src/app.ts",
"default": "./dist/webwriter-neural-network.*"
},
"./snippets/Pima-Indians-Diabetes.html": "./snippets/Pima-Indians-Diabetes.html",
"./snippets/Boston-House-Pricing.html": "./snippets/Boston-House-Pricing.html",
"./icon": "./icon.svg",
"./editing-config.json": "./editing-config.json",
"./custom-elements.json": "./custom-elements.json"
},
"editingConfig": {
".": {}
},
"customElements": "custom-elements.json"
}