-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.76 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
{
"name": "ndarray-js",
"version": "1.0.4",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "vitest",
"test:watch": "vitest --watch",
"serve-docs": "cd docs && python -m http.server 8000",
"build-docs": "typedoc",
"build-docs-4": "ts-docs src/index.ts",
"build-docs-6": "api-extractor run --local --verbose",
"build-docs-5": "typedoc --json out.json",
"build-docs-2": "ts-to-jsdoc -f -p ./tsconfig.json -o sphinx-docs/_ts_to_jsdoc",
"build-docs-3": "cd sphinx-docs && make html",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\""
},
"keywords": [
"ndarray",
"numpy",
"math",
"array",
"numpy-js",
"typescript",
"javascript",
"numjs"
],
"author": "Carlos Pinzón",
"license": "BSD 3",
"dependencies": {
"ohm-js": "^17.1.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.43.0",
"@mxssfd/typedoc-theme": "^1.1.3",
"@ts-docs/default-docs-structure": "^0.4.4",
"@ts-docs/ts-docs": "^0.4.4",
"@types/node": "^20.8.3",
"d3": "^6.0.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"eslint-plugin-tsdoc": "^0.2.17",
"jsdom": "^22.1.0",
"json5": "^2.2.3",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.12",
"typedoc-default-themes": "^0.12.10",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-merge-modules": "^5.1.0",
"typedoc-plugin-missing-exports": "^2.2.0",
"typedoc-plugin-script-inject": "^1.0.0",
"typedoc-theme-hierarchy": "^4.1.2",
"typescript": "^5.2.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"vitest": "^2.1.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-license-plugin": "^4.3.0"
}
}