-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 813 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 813 Bytes
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
{
"name": "neurallab",
"private": true,
"version": "0.0.0",
"description": "Build a Kohonen map and a multilayer perceptron, and watch both learn",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "npm run dev --workspace @neurallab/web",
"build": "npm run build --workspace @neurallab/web",
"check": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"data": "node --experimental-strip-types scripts/data.ts",
"train": "node --experimental-strip-types scripts/train.ts",
"som": "node --experimental-strip-types scripts/som.ts",
"server": "dotnet run --project server/NeuralLab.Server"
},
"devDependencies": {
"@types/node": "^26.2.0",
"typescript": "^5.7.2",
"vitest": "^4.1.10"
}
}