CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json51 linesDownload Raw Back to delaunator
1{2  "name": "delaunator",3  "version": "5.1.0",4  "description": "An incredibly fast JavaScript library for Delaunay triangulation of 2D points",5  "main": "index.js",6  "module": "index.js",7  "type": "module",8  "types": "index.d.ts",9  "jsdelivr": "delaunator.min.js",10  "unpkg": "delaunator.min.js",11  "sideEffects": false,12  "dependencies": {13    "robust-predicates": "^3.0.2"14  },15  "devDependencies": {16    "@rollup/plugin-node-resolve": "^16.0.3",17    "@rollup/plugin-terser": "^1.0.0",18    "eslint": "^10.1.0",19    "eslint-config-mourner": "^4.1.0",20    "rollup": "^4.59.1",21    "typescript": "^5.9.3"22  },23  "repository": {24    "type": "git",25    "url": "https://github.com/mapbox/delaunator.git"26  },27  "scripts": {28    "lint": "eslint index.js test/test.js bench.js rollup.config.js docs/diagrams.js",29    "pretest": "npm run lint",30    "test": "tsc && node test/test.js",31    "cov": "node --experimental-test-coverage test/test.js",32    "bench": "node bench.js",33    "build": "rollup -c",34    "start": "rollup -cw",35    "prepublishOnly": "npm test && npm run build"36  },37  "files": [38    "index.js",39    "index.d.ts",40    "delaunator.js",41    "delaunator.min.js"42  ],43  "keywords": [44    "delaunay triangulation",45    "computational geometry",46    "algorithms"47  ],48  "author": "Vladimir Agafonkin",49  "license": "ISC"50}51 
basant307/AI_Governance_Project · CoolFace