luma.gl/modules/webgpu/package.json
2024-02-23 11:21:06 +01:00

48 lines
1.1 KiB
JSON

{
"name": "@luma.gl/webgpu",
"version": "9.0.0-beta.5",
"description": "WebGPU adapter for the luma.gl core API",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/visgl/luma.gl"
},
"keywords": [
"webgpu",
"visualization",
"animation",
"3d"
],
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"src",
"dist",
"dist.min.js",
"README.md"
],
"sideEffects": false,
"scripts": {
"build-minified-bundle": "ocular-bundle ./src/index.ts -output=dist/dist.min.js",
"build-dev-bundle": "ocular-bundle ./src/index.ts -output=dist/dist.dev.js -- --env=dev",
"prepublishOnly": "npm run build-minified-bundle && npm run build-dev-bundle"
},
"peerDependencies": {
"@luma.gl/core": "^9.0.0-beta.4"
},
"dependencies": {
"@probe.gl/env": "^4.0.2",
"@webgpu/types": "^0.1.34"
},
"gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e"
}