-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
93 lines (93 loc) · 2.63 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "blasjs",
"version": "2.0.0-rc1",
"description": "Javascript/wasm/webgpu Implementation of BLAS Level 1, level 2, level 3 kernels/subroutines",
"keywords": [
"BLAS",
"linear algebra",
"LAPACK",
"linear regression",
"vector algebra",
"generalized linear model",
"matrix",
"vector",
"complex matrix",
"conjugate matrix",
"transpose matrix",
"matrix inverse",
"determinant",
"jacobian",
"Hermitian",
"conjugate",
"compute shader"
],
"homepage": "https://r.js.org",
"bugs": {
"url": "https://github.com/R-js/blasjs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/R-js/blasjs.git"
},
"license": "SEE LICENSE IN LICENSE.txt",
"author": "Jacob K.F. Bogers <jkfbogers@gmail.com>",
"sideEffects": true,
"type": "module",
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/commonjs/index.cjs"
},
"browser": "./dist/web.esm/mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"CHANGELOG.md",
"LICENSE.txt",
"README.md"
],
"scripts": {
"prebuild": "npm run lint",
"build": "node --trace-warnings scripts/build.mjs",
"postbuild": "node --trace-warnings scripts/rollup.build.mjs",
"lint": "eslint lib/**/*.ts",
"lint:fix": "eslint lib/**/*.ts --fix",
"prepare": "ts-patch install -s",
"prepublishOnly": "npm run build",
"test": "jest --verbose"
},
"contributes": {
"typescriptServerPlugins": [
{
"name": "typescript-eslint-language-service"
}
]
},
"dependencies": {
"@mangos/debug": "0.0.9-rc5"
},
"devDependencies": {
"@babel/eslint-parser": "7.21.3",
"@mangos/jxpath": "1.0.13",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.1.0",
"@types/jest": "29.2.2",
"@types/node": "18.11.10",
"@typescript-eslint/eslint-plugin": "5.45.1",
"@typescript-eslint/parser": "5.45.1",
"acorn": "8.8.1",
"escodegen": "2.0.0",
"eslint": "8.29.0",
"jest": "29.3.1",
"lib-r-math.js": "2.0.0",
"ms": "3.0.0-canary.1",
"rollup": "3.6.0",
"ts-jest": "29.0.3",
"ts-patch": "2.0.2",
"typescript": "4.4.4",
"typescript-eslint-language-service": "4.1.5",
"typescript-transform-paths": "3.4.4"
},
"engines": {
"node": ">=v18.14.0"
}
}