mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
32 lines
1.1 KiB
JSON
32 lines
1.1 KiB
JSON
{
|
|
"name": "@luma.gl/imageprocessing",
|
|
"description": "image processing library",
|
|
"private": "true",
|
|
"version": "0.0.1",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/uber/luma.gl"
|
|
},
|
|
"main": "dist/es5/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"esnext": "dist/es6/index.js",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"clean": "rm -fr dist && mkdir -p dist/es5 dist/esm dist/es6",
|
|
"build": "npm run clean && npm run build-es6 && npm run build-esm && npm run build-es5",
|
|
"build-es6": "BABEL_ENV=es6 babel src --config-file ../../babel.config.js --out-dir dist/es6 --source-maps --ignore 'node_modules/'",
|
|
"build-esm": "BABEL_ENV=esm babel src --config-file ../../babel.config.js --out-dir dist/esm --source-maps --ignore 'node_modules/'",
|
|
"build-es5": "BABEL_ENV=es5 babel src --config-file ../../babel.config.js --out-dir dist/es5 --source-maps --ignore 'node_modules/'"
|
|
},
|
|
"dependencies": {
|
|
"@luma.gl/constants": "^7.0.0-alpha.2",
|
|
"luma.gl": "^7.0.0-alpha.2"
|
|
}
|
|
}
|