geometrix
Version:
The 2D geometry engine of the parametrix
84 lines (83 loc) • 1.68 kB
JSON
{
"name": "geometrix",
"version": "1.0.27",
"description": "The 2D geometry engine of the parametrix",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/charlyoleg2/parametrix.git"
},
"homepage": "https://charlyoleg2.github.io/parametrix/",
"author": "charlyoleg",
"license": "ISC",
"keywords": [
"cad",
"programmatic",
"2D",
"circle",
"stroke",
"arc",
"gear"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.map",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"tsup": {
"entry": [
"src/index.ts"
],
"format": "esm",
"splitting": false,
"dts": true,
"sourcemap": true,
"clean": true
},
"prettier": {
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": [],
"overrides": []
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"check": "tsc --noEmit",
"pretty": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint .",
"test:unit": "vitest",
"test:unit:once": "vitest --run",
"ci": "run-s check build pretty lint test:unit:once",
"clean": "rimraf dist node_modules"
},
"dependencies": {
"@zip.js/zip.js": "^2.8.11",
"json5": "^2.2.3"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^25.0.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"npm-run-all2": "^8.0.4",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vitest": "^4.0.16"
}
}