mirror of
https://github.com/openglobus/openglobus.git
synced 2025-12-08 19:25:27 +00:00
84 lines
2.5 KiB
JSON
84 lines
2.5 KiB
JSON
{
|
|
"name": "@openglobus/og",
|
|
"version": "0.10.6",
|
|
"description": "[OpenGlobus](http://www.openglobus.org/) is a javascript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers and 3d objects. It uses the WebGL technology, open source and completely free.",
|
|
"directories": {
|
|
"example": "./sandbox"
|
|
},
|
|
"main": "./src/og/index.js",
|
|
"style": "./css/og.css",
|
|
"scripts": {
|
|
"api": "jsdoc -t ./jsdoc -r ./src/ -c ./jsdoc/conf.json -d ./api",
|
|
"serve": "ws",
|
|
"build": "rollup -c",
|
|
"webgl": "rollup -c --environment entry:webgl",
|
|
"core": "rollup -c --environment entry:core",
|
|
"test": "jest --env=jsdom",
|
|
"lint": "eslint src/og",
|
|
"generate_types": "rm -rf node_modules/@types/openglobus__og; tsc src/**/*.js --declaration --allowJs --emitDeclarationOnly --outDir node_modules/@types/openglobus__og",
|
|
"prepare": "husky install"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/openglobus/openglobus.git"
|
|
},
|
|
"author": "Zemledelec",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/openglobus/openglobus/issues",
|
|
"email": "mgevlich@gmail.com"
|
|
},
|
|
"homepage": "http://www.openglobus.org",
|
|
"exports": {
|
|
".": "./src/og/index.js",
|
|
"./layer": "./src/og/layer/index.js",
|
|
"./bv": "./src/og/bv/index.js",
|
|
"./terrain": "./src/og/terrain/index.js",
|
|
"./entity": "./src/og/entity/index.js",
|
|
"./control": "./src/og/control/index.js",
|
|
"./webgl": "./src/og/webgl/index.js",
|
|
"./scene": "./src/og/scene/index.js",
|
|
"./css/og.css": "./css/og.css"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.12.17",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-defaults": "^9.0.0",
|
|
"eslint-config-standard": "^14.1.1",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^4.3.1",
|
|
"eslint-plugin-standard": "^4.1.0",
|
|
"husky": "^6.0.0",
|
|
"jaguarjs-jsdoc": "^1.1.0",
|
|
"jest": "^27.2.3",
|
|
"jsdoc": "^3.6.7",
|
|
"lint-staged": "^11.0.0",
|
|
"local-web-server": "^5.1.1",
|
|
"msdf-bmfont-xml": "^2.3.6",
|
|
"postcss": "^8.3.0",
|
|
"prettier": "^2.3.0",
|
|
"rollup": "^1.32.1",
|
|
"rollup-plugin-postcss": "^4.0.0",
|
|
"rollup-plugin-terser": "^5.3.1",
|
|
"typescript": "^4.4.3"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"files": [
|
|
"src/**/*",
|
|
"css/**/*"
|
|
],
|
|
"keywords": [
|
|
"map",
|
|
"3D",
|
|
"webgl",
|
|
"globe",
|
|
"og"
|
|
]
|
|
}
|