@mlightcad/libredwg-converter
Version:
The `libredwg-converter` package provides a DWG file converter for the RealDWG-Web ecosystem, enabling reading and conversion of DWG files into the AutoCAD-like drawing database structure. It is based on the [LibreDWG](https://www.gnu.org/software/libredw
56 lines • 1.46 kB
JSON
{
"name": "@mlightcad/libredwg-converter",
"version": "3.6.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mlightcad/realdwg-web"
},
"keywords": [
"autocad",
"cad",
"dwg",
"dxf",
"libredwg",
"libredwg-web",
"mlight",
"mlightcad",
"objectarx",
"realdwg"
],
"files": [
"dist",
"lib",
"README.md",
"package.json"
],
"sideEffects": false,
"main": "./dist/libredwg-converter.umd.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./dist/libredwg-converter.umd.cjs"
},
"dependencies": {
"@mlightcad/libredwg-web": "^0.7.1"
},
"devDependencies": {
"vite": "^5.2.10"
},
"peerDependencies": {
"@mlightcad/data-model": "1.8.0"
},
"scripts": {
"analyze": "pnpm run analyze:lib && pnpm run analyze:worker",
"analyze:lib": "vite build --mode analyze --config vite.config.main.ts",
"analyze:worker": "vite build --mode analyze --config vite.config.worker.ts",
"clean": "rimraf dist lib tsconfig.tsbuildinfo",
"build": "tsc && vite build -c vite.config.main.ts && vite build -c vite.config.worker.ts",
"build:main": "vite build -c vite.config.main.ts",
"build:worker": "vite build -c vite.config.worker.ts",
"lint": "eslint src/",
"lint:fix": "eslint --fix --quiet src/"
}
}