UNPKG

shpts

Version:

TypeScript package for loading Esri Shapefiles, primary developed for for WebGL applications

52 lines (51 loc) 1.14 kB
{ "name": "shpts", "private": false, "version": "1.1.0", "type": "module", "repository": { "type": "git", "url": "https://github.com/vojtatom/shp.ts" }, "keywords": [ "shapefile", "esri", "shp", "shx", "dbf" ], "author": { "name": "Vojtěch Tomas", "email": "hello@vojtatom.cz", "url": "https://vojtatom.cz" }, "license": "MIT", "files": [ "dist/**/*" ], "main": "./dist/shpts.umd.js", "module": "./dist/shpts.js", "types": "./dist/shpts.d.ts", "exports": { ".": { "import": "./dist/shpts.js", "require": "./dist/shpts.umd.js" } }, "scripts": { "dev": "vite", "build": "tsc && vite build", "preview": "vite preview", "test": "vitest", "coverage": "vitest run --coverage" }, "devDependencies": { "typescript": "^4.9.3", "vite": "^4.1.0", "vite-plugin-dts": "^2.0.0-beta.3", "vitest": "^0.30.1" }, "dependencies": { "gl-matrix": "^3.4.3" } }