-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
66 lines (66 loc) · 2.09 KB
/
package.json
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
{
"name": "vectorious",
"version": "6.1.0",
"description": "A high performance linear algebra library.",
"main": "dist/index.js",
"browser": "dist/index.browser.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.esm.js"
}
},
"scripts": {
"test": "jest",
"benchmark": "for file in $(ls src/**/*.bench.ts); do ts-node $file; done",
"docs": "tsc --outDir built && jsdoc --configure jsdoc.json && rm -rf built",
"build:node": "esbuild --bundle src/index.ts --minify --sourcemap --platform=node --outfile=dist/index.js --external:nblas --external:nlapack",
"build:browser": "esbuild --bundle src/index.ts --minify --sourcemap --platform=browser --global-name=v --outfile=dist/index.browser.js --external:nblas --external:nlapack",
"build:esm": "esbuild --bundle src/index.ts --minify --sourcemap --format=esm --outfile=dist/index.esm.js --external:nblas --external:nlapack",
"build": "rm -rf dist && tsc -emitDeclarationOnly && npm run build:node && npm run build:browser && npm run build:esm",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/mateogianolio/vectorious.git"
},
"keywords": [
"matrix",
"vector",
"linear",
"algebra"
],
"author": "Mateo Gianolio",
"contributors": [
"Bart van Andel <bavanandel@gmail.com>",
"James Vickers",
"Phillip Wang",
"Waylon Flinn",
"Xuefeng Zhu"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mateogianolio/vectorious/issues"
},
"homepage": "https://github.com/mateogianolio/vectorious",
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"esbuild": "^0.11.12",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"matplotnode": "^0.4.2",
"mocha": "^8.3.2",
"nodemark": "^0.3.0",
"tidy-jsdoc": "^1.4.0",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"optionalDependencies": {
"nblas": "^2.1.9",
"nlapack": "^2.0.4"
}
}