34 lines
841 B
JSON
34 lines
841 B
JSON
{
|
|
"name": "@nodedc/map-cesium-react",
|
|
"version": "0.1.0",
|
|
"description": "Shared credential-free Cesium adapter for NODE.DC Map Page consumers.",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./widgets.css": "./dist/widgets.css"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json && cp ../../node_modules/cesium/Build/Cesium/Widgets/widgets.css dist/widgets.css",
|
|
"test": "npm run build && node --test test/*.test.mjs",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"cesium": "1.143.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.1.0",
|
|
"react": "^19.1.0"
|
|
}
|
|
}
|