-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 828 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 828 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
{
"name": "stdlib-showcase",
"version": "1.0.0",
"description": "A showcase of stdlib-js for GSoC 2025",
"scripts": {
"build": "webpack",
"watch": "webpack --watch"
},
"devDependencies": {
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {
"@stdlib/stats-base-dmean": "*",
"@stdlib/stats-base-dvariance": "*",
"@stdlib/stats-base-max": "*",
"@stdlib/stats-base-min": "*",
"@stdlib/math-base-special-sqrt": "*",
"@stdlib/blas-base-ddot": "*",
"@stdlib/ndarray-array": "*",
"@stdlib/ndarray-slice": "*",
"@stdlib/ndarray-base-numel": "*",
"@stdlib/ndarray-shape": "*",
"@stdlib/ndarray-strides": "*",
"@stdlib/ndarray-dtype": "*",
"@stdlib/ndarray-to-array": "*",
"@stdlib/slice-ctor": "*",
"@stdlib/slice-multi": "*"
}
}