luma.gl/modules/engine/package.json
2025-08-09 09:25:14 -04:00

54 lines
1.3 KiB
JSON

{
"name": "@luma.gl/engine",
"version": "9.2.0-alpha.6",
"description": "3D Engine Components for luma.gl",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/visgl/luma.gl"
},
"keywords": [
"webgl",
"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 ./bundle.ts --output=dist/dist.min.js",
"build-dev-bundle": "ocular-bundle ./bundle.ts --output=dist/dist.dev.js --env=dev",
"prepublishOnly": "npm run build-minified-bundle && npm run build-dev-bundle"
},
"peerDependencies": {
"@luma.gl/core": "9.2.0-alpha.6",
"@luma.gl/shadertools": "9.2.0-alpha.6"
},
"dependencies": {
"@math.gl/core": "^4.1.0",
"@math.gl/types": "^4.1.0",
"@probe.gl/log": "^4.0.8",
"@probe.gl/stats": "^4.0.8"
},
"gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e"
}