mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
30 lines
730 B
JSON
30 lines
730 B
JSON
{
|
|
"name": "babel-plugin-inline-webgl-constants",
|
|
"version": "2.0.0-alpha.1",
|
|
"description": "Babel plugin for replacing long gl constants with the shorter corresponding numbers",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"author": "Ib Green",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/visgl/luma.gl"
|
|
},
|
|
"keywords": [
|
|
"babel-plugin",
|
|
"webgl",
|
|
"strip gl constants"
|
|
],
|
|
"scripts": {
|
|
"build": "babel index.js --presets @babel/env --out-file dist/index.cjs",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"main": "dist/index.cjs",
|
|
"exports": {
|
|
"import": "./index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"dependencies": {
|
|
"@luma.gl/constants": "9.2.0-alpha.6"
|
|
}
|
|
}
|