@mlightcad/geometry-engine
Version:
The geometry-engine package provides comprehensive geometric entities, mathematical operations, and transformations for 2D and 3D space. This package mimics AutoCAD ObjectARX's AcGe (Geometry) classes and provides the mathematical foundation for CAD opera
46 lines • 964 B
JSON
{
"name": "@mlightcad/geometry-engine",
"version": "3.1.3",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mlightcad/realdwg-web"
},
"keywords": [
"autocad",
"cad",
"dwg",
"dxf",
"mlight",
"mlightcad",
"objectarx",
"realdwg"
],
"files": [
"dist",
"lib",
"README.md",
"package.json"
],
"main": "./dist/geometry-engine.umd.cjs",
"module": "./dist/geometry-engine.js",
"types": "./lib/index.d.ts",
"exports": {
"types": "./lib/index.d.ts",
"import": "./dist/geometry-engine.js",
"require": "./dist/geometry-engine.umd.cjs"
},
"dependencies": {
"verb-nurbs-web": "^2.1.3"
},
"peerDependencies": {
"@mlightcad/common": "1.3.0"
},
"scripts": {
"clean": "rimraf dist lib tsconfig.tsbuildinfo",
"build": "tsc && vite build",
"lint": "eslint src/",
"lint:fix": "eslint --fix --quiet src/"
}
}