-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 878 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 878 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
28
29
30
31
32
33
34
35
36
{
"name": "array-3d-viz",
"version": "1.0.0",
"description": "A tool to visualise arrays and matrices in 3D space.",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tom-draper/array-3d-viz.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tom-draper/array-3d-viz/issues"
},
"homepage": "https://github.com/tom-draper/array-3d-viz#readme",
"dependencies": {
"cross-fetch": "^3.1.5",
"csv-parse": "^5.6.0",
"express": "^4.18.1",
"jsfive": "^0.4.0",
"ndarray": "^1.0.19",
"node-fetch": "^3.2.8",
"npyjs": "^0.5.0",
"parquetjs": "^0.11.2",
"pickleparser": "^0.2.1",
"python-shell": "^3.0.1"
},
"devDependencies": {
"vitest": "^4.1.6"
}
}