-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 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
{
"name": "fast-tensor",
"version": "0.6.1",
"description": "High-performance, immutable matrix math for realtime applications. Powered by WASM.",
"repository": "github:sparkida/fast-tensor",
"homepage": "https://sparkida.github.io/fast-tensor/",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"rollup": "npx rollup -c",
"build": "make all",
"docs": "rm -rf ./site/docs && npx typedoc",
"lint": "tsc --noEmit && npx eslint src/ts",
"test": "NODE_ENV=test TSX_TSCONFIG_PATH=./test/tsconfig.json npx mocha"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "dist/index.d.ts",
"browser": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
},
"node": {
"import": "./dist/index.node.esm.js",
"require": "./dist/index.node.cjs"
},
"default": "./dist/index.node.esm.js"
},
"./tensor.wasm": "./dist/tensor.wasm"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@hoff97/tensor-js": "^0.3.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@tensorflow/tfjs": "^4.22.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"chai": "^5.1.2",
"eslint": "^9.17.0",
"mathjs": "^14.0.1",
"ml-matrix": "^6.12.0",
"mocha": "^11.0.1",
"prettier": "^3.3.3",
"rollup": "^4.28.1",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"tree-sitter": "^0.21.1",
"tree-sitter-cpp": "^0.23.4",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"keywords": [
"matrix",
"vector",
"tensor",
"math",
"wasm"
],
"author": "Nick Riley <[email protected]>",
"license": "MIT"
}