mirror of
https://github.com/openglobus/openglobus.git
synced 2025-12-08 19:25:27 +00:00
84 lines
2.4 KiB
JSON
84 lines
2.4 KiB
JSON
{
|
|
"name": "@openglobus/og",
|
|
"version": "0.17.1",
|
|
"description": "[openglobus](https://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.ts",
|
|
"style": "./css/og.css",
|
|
"scripts": {
|
|
"docs": "jsdoc -r ./src/ -c ./jsdoc.conf.json -d ./docs",
|
|
"serve": "ws",
|
|
"build": "rollup -c --bundleConfigAsCjs",
|
|
"test": "jest --env=jsdom --runInBand --ci --coverage=false",
|
|
"test_watch": "jest --env=jsdom --watch",
|
|
"lint": "eslint -c ./.eslintrc.js src/og",
|
|
"font": "node ./fonts/index.js"
|
|
},
|
|
"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": "https://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.21.5",
|
|
"@rollup/plugin-json": "^6.0.0",
|
|
"@rollup/plugin-terser": "^0.4.1",
|
|
"@types/jest": "^29.5.3",
|
|
"@typescript-eslint/eslint-plugin": "^6.2.1",
|
|
"@typescript-eslint/parser": "^6.2.1",
|
|
"clean-jsdoc-theme": "^4.2.7",
|
|
"eslint": "^8.39.0",
|
|
"jest": "^29.5.0",
|
|
"jest-canvas-mock": "^2.5.0",
|
|
"jest-environment-jsdom": "^29.5.0",
|
|
"jsdoc": "^4.0.2",
|
|
"lint-staged": "^13.2.2",
|
|
"local-web-server": "^5.3.0",
|
|
"postcss": "^8.4.23",
|
|
"prettier": "^2.8.8",
|
|
"rollup": "^3.21.3",
|
|
"rollup-plugin-postcss": "^4.0.2",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"files": [
|
|
"src/**/*",
|
|
"dist/**/*",
|
|
"css/**/*"
|
|
],
|
|
"keywords": [
|
|
"map",
|
|
"3D",
|
|
"webgl",
|
|
"globe",
|
|
"og"
|
|
],
|
|
"dependencies": {
|
|
"@rollup/plugin-typescript": "^11.1.2"
|
|
}
|
|
}
|