gpu.js/package.json
Robert Plummer 4aa08ca393 fix: Casting for all non-float arguments used with Math.fn()
fix: Greater than, less than evaluation when comparing an integer with a literal that is a float, try not to cast left, but rather cast left to right
fix: Constants that do not have a type defined should fail
fix: Don't prevent "random" as a native function name
fix: Allow Texture constructor to inherit instance of GPU for easy .toArray()
fix: Texture constructor as settings object for easier understanding of order input
fix: Typescript corrections for Texture
fix: Bump headless-gl version to that of Multiple Render Targets
2019-03-17 22:12:09 -04:00

59 lines
1.3 KiB
JSON

{
"name": "gpu.js",
"version": "2.0.0-rc.4",
"description": "GPU Accelerated JavaScript",
"engines": {
"node": ">=10.0.0"
},
"main": "./src/index.js",
"files": [
"src"
],
"directories": {
"doc": "doc",
"test": "test"
},
"dependencies": {
"acorn": "^5.1.1",
"gl": "^4.2.2",
"gpu-mock.js": "^1.0.1"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browser-sync": "^2.26.3",
"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-strip-comments": "^2.4.5",
"merge-stream": "^1.0.1",
"qunit": "^2.9.1",
"typescript": "^3.3.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"test": "qunit",
"setup": "npm i -g gulp-cli",
"build-docs": "./node_modules/.bin/jsdoc -c jsdoc.json src -r -d doc --debug && gulp injectCSS",
"make": "gulp build && gulp beautify && gulp minify"
},
"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"
}