mirror of
https://github.com/gpujs/gpu.js.git
synced 2026-01-25 16:08:02 +00:00
fix: texture.renderRawOutput to use existing framebuffer, or make it so it can be deleted fix: glKernelString to handle the framebuffer from texture.renderRawOutput fix: WebGLKernelArray.checkSize so display error for all three scenarios 1. width too big 2. height too big 3. width and height too big
67 lines
1.5 KiB
JSON
67 lines
1.5 KiB
JSON
{
|
|
"name": "gpu.js",
|
|
"version": "2.4.8",
|
|
"description": "GPU Accelerated JavaScript",
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"main": "./src/index.js",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"unpkg": "./dist/gpu-browser.min.js",
|
|
"jsdelivr": "./dist/gpu-browser.min.js",
|
|
"browser": "./dist/gpu-browser.js",
|
|
"directories": {
|
|
"doc": "doc",
|
|
"test": "test"
|
|
},
|
|
"dependencies": {
|
|
"acorn": "^7.1.0",
|
|
"gl": "^4.4.0",
|
|
"gl-wiretap": "^0.6.2",
|
|
"gpu-mock.js": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"benchmark": "^2.1.4",
|
|
"browser-sync": "^2.26.7",
|
|
"browserify": "^16.2.3",
|
|
"gulp": "^4.0.0",
|
|
"gulp-concat": "^2.6.0",
|
|
"gulp-header": "^1.7.1",
|
|
"gulp-jsbeautifier": "^2.1.0",
|
|
"gulp-rename": "^1.2.2",
|
|
"gulp-replace": "^1.0.0",
|
|
"gulp-strip-comments": "^2.4.5",
|
|
"gulp-uglify-es": "^1.0.4",
|
|
"merge-stream": "^1.0.1",
|
|
"qunit": "^2.9.1",
|
|
"read-dir-deep": "^7.0.1",
|
|
"sinon": "^7.3.2",
|
|
"vinyl-buffer": "^1.0.0",
|
|
"vinyl-source-stream": "^2.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "qunit",
|
|
"setup": "npm i -g gulp-cli",
|
|
"make": "gulp make",
|
|
"docs": "doxdox ./src --layout bootstrap --output docs.html"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/gpujs/gpu.js.git"
|
|
},
|
|
"keywords": [
|
|
"gpgpu",
|
|
"webgl"
|
|
],
|
|
"author": "The gpu.js Team",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/gpujs/gpu.js/issues"
|
|
},
|
|
"homepage": "http://gpu.rocks/",
|
|
"typings": "./src/index.d.ts"
|
|
}
|