-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 911 Bytes
/
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
{
"name": "matmul-gpu",
"version": "0.1.3",
"description": "A fast and efficient WebGPU powered implementation of matrix multiplication",
"keywords": [
"matrix",
"matrix multiplication",
"webgpu",
"gpu",
"fast",
"linear algebra"
],
"contributors": [
{
"name": "Lee Mason"
},
{
"name": "Jeya Balaji Balasubramanian"
}
],
"license": "ISC",
"homepage": "https://github.com/LKMason/matmul-gpu#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LKMason/matmul-gpu"
},
"bugs": {
"url": "https://github.com/LKMason/matmul-gpu/issues"
},
"main": "dist/matmul-gpu.js",
"module": "dist/matmul-gpu.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.34.6"
}
}