Files

30 lines
590 B
JSON
Raw Permalink Normal View History

{
"name": "imhotep-geometry",
"version": "1.1.0",
"type": "module",
"license": "MIT",
"description": "Bounding-box computation, rect algebra, and transform math",
"repository": {
"type": "git",
"url": "https://gitea.com/anomalyco/imhotep.git"
},
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "node --test dist/**/*.test.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
}