Initial commit.

This commit is contained in:
Austin Smith
2025-12-15 08:15:22 -05:00
commit b46ba0c659
5 changed files with 392 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "useopenlayers",
"version": "1.0.0",
"description": "React wrapper over Open Layers that expose functionality via hooks.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Austin Smith",
"license": "ISC",
"dependencies": {
"ol": "^10.7.0",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"typescript": "^5.9.3"
}
}