-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@markroland/concave-hull",
"version": "1.2.3",
"description": "Calculate a Concave Hull from a set of points in 2D space",
"main": "./dist/concaveHull.cjs.js",
"module": "./dist/concaveHull.esm.js",
"exports": {
"require": "./dist/concaveHull.cjs.js",
"import": "./dist/concaveHull.esm.js"
},
"bin": {
"concave-hull": "src/cli.js"
},
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markroland/concaveHullJS.git"
},
"keywords": [
"Concave",
"Hull"
],
"files": [
"src/cli.js",
"dist",
"README.md"
],
"author": "Mark Roland",
"license": "CC BY-SA 4.0",
"bugs": {
"url": "https://github.com/markroland/concaveHullJS/issues"
},
"homepage": "https://github.com/markroland/concaveHullJS#readme",
"devDependencies": {
"@babel/preset-env": "^7.27.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.40.1"
},
"engines": {
"node": ">=22.x",
"npm": ">=10.x"
},
"browserslist": [
">0.25%",
"not dead"
],
"dependencies": {
"csv-parse": "^5.6.0",
"csv-stringify": "^6.5.2",
"yargs": "^17.7.2"
}
}