-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.55 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.55 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
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
94
95
96
97
98
99
100
{
"name": "accel-gpu",
"version": "1.0.3",
"description": "NumPy for the browser GPU — zero shaders, zero dependencies",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./math": {
"types": "./dist/math.d.ts",
"import": "./dist/math.js",
"require": "./dist/math.cjs"
},
"./linalg": {
"types": "./dist/linalg.d.ts",
"import": "./dist/linalg.js",
"require": "./dist/linalg.cjs"
},
"./ml": {
"types": "./dist/ml.d.ts",
"import": "./dist/ml.js",
"require": "./dist/ml.cjs"
},
"./signal": {
"types": "./dist/signal.d.ts",
"import": "./dist/signal.js",
"require": "./dist/signal.cjs"
},
"./data": {
"types": "./dist/data.d.ts",
"import": "./dist/data.js",
"require": "./dist/data.cjs"
}
},
"files": [
"dist",
"icon.png"
],
"keywords": [
"webgpu",
"webgl",
"wasm",
"webworker",
"gpu",
"compute",
"numpy",
"tensor",
"browser",
"inference",
"machine-learning",
"matrix",
"linear-algebra",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Phantasm0009/accel-gpu.git"
},
"bugs": {
"url": "https://github.com/Phantasm0009/accel-gpu/issues"
},
"homepage": "https://phantasm0009.github.io/accel-gpu/",
"author": "Aditya Tiwari",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "tsup",
"build:site": "npm run build && npm run docs:build && node scripts/build-site.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "npm run build && vitest run",
"test:bundle-size": "npm run build && node scripts/check-bundle-size.mjs",
"test:browsers": "playwright test",
"test:watch": "npm run build && vitest",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@webgpu/types": "^0.1.69",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18",
"@playwright/test": "^1.54.2",
"vitepress": "^1.6.4"
}
}