2 "name": "turing-sphere",
3 "version": "0.1.0",
4 "description": "Live reaction-diffusion (Turing patterns) on the sphere, spectral spherical-harmonic solver on WebGPU",
5 "type": "module",
7 "node": ">=22.6"
8 },
2dedc35turing-sphere: reaction-diffusion on the sphere, spectral solver on WebGPUJeremy Magland 9 "license": "CECILL-2.1",
10 "scripts": {
11 "dev": "vite",
12 "build": "tsc --noEmit && vite build",
35d91faDelete the TypeScript solver; the .m models are the only implementationJeremy Magland 13 "test:node": "vite-node scripts/test-node.ts",
2dedc35turing-sphere: reaction-diffusion on the sphere, spectral solver on WebGPUJeremy Magland 14 "test:gpu": "vite build && node scripts/test-gpu.mjs",
15a77e2Add a desktop WebGPU benchmark and show its command in the appJeremy Magland 15 "test": "npm run test:node && npm run test:gpu",
35d91faDelete the TypeScript solver; the .m models are the only implementationJeremy Magland 16 "bench": "vite-node scripts/bench.ts"
2dedc35turing-sphere: reaction-diffusion on the sphere, spectral solver on WebGPUJeremy Magland 17 },
18 "dependencies": {
61e12f1Write the solver in MATLAB and compile it to WebGPUJeremy Magland 19 "numbl": "file:../../numbl",
2dedc35turing-sphere: reaction-diffusion on the sphere, spectral solver on WebGPUJeremy Magland 20 "three": "^0.183.0"
21 },
15a77e2Add a desktop WebGPU benchmark and show its command in the appJeremy Magland 22 "optionalDependencies": {
23 "webgpu": "^0.4.0"
24 },
2dedc35turing-sphere: reaction-diffusion on the sphere, spectral solver on WebGPUJeremy Magland 25 "devDependencies": {
26 "@types/node": "^26.1.1",
27 "@types/three": "^0.185.1",
28 "@webgpu/types": "^0.1.44",
29 "puppeteer-core": "^23.0.0",
30 "typescript": "^5.5.0",
35d91faDelete the TypeScript solver; the .m models are the only implementationJeremy Magland 31 "vite": "^5.4.0",
32 "vite-node": "^6.0.0"
2dedc35turing-sphere: reaction-diffusion on the sphere, spectral solver on WebGPUJeremy Magland 33 }
34}