/ concept-collection / math-webgpu-sandbox
concept-collection / math-webgpu-sandbox
math-webgpu-sandbox / package.json
31 lines · 858 BCodeBlameHistory
2 "name": "math-webgpu-sandbox",
3 "version": "0.1.0",
4 "description": "MATLAB-syntax playground that compiles scripts to fused WebGPU compute kernels, with tic/toc timing you can compare against real MATLAB",
5 "type": "module",
6 "engines": {
7 "node": ">=22.6"
8 },
9 "license": "Apache-2.0",
10 "scripts": {
11 "dev": "vite",
12 "build": "tsc --noEmit && vite build",
13 "test:node": "vite-node scripts/test-node.ts",
14 "test:gpu": "vite build && node scripts/test-gpu.mjs",
15 "test": "npm run test:node && npm run test:gpu"
16 },
17 "dependencies": {
18 "numbl": "file:../../numbl"
19 },
20 "optionalDependencies": {
21 "webgpu": "^0.4.0"
22 },
23 "devDependencies": {
24 "@types/node": "^26.1.1",
25 "@webgpu/types": "^0.1.44",
26 "puppeteer-core": "^23.0.0",
27 "typescript": "^5.5.0",
28 "vite": "^5.4.0",
29 "vite-node": "^6.0.0"
30 }