forked from kninnug/Constrainautor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.33 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.33 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@maplat/edgebound",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.2.3",
"description": "A small library for dual-constraining a Delaunator triangulation",
"type": "module",
"main": "./dist/maplat_edgebound.cjs",
"module": "./dist/maplat_edgebound.js",
"browser": "./dist/maplat_edgebound.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/maplat_edgebound.js",
"require": "./dist/maplat_edgebound.cjs"
}
},
"files": [
"dist",
"src",
"README.md",
"README.ja.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "npm run typecheck && cross-env BUILD_MODE=package vite build",
"typecheck": "tsc --noEmit --allowImportingTsExtensions",
"deploy": "cp public/*.html ./ && tsc && vite build",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint src tests",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build",
"version:bump": "node scripts/bump-version.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code4history/MaplatEdgebound.git"
},
"author": "Code for History",
"license": "MIT",
"bugs": {
"url": "https://github.com/code4history/MaplatEdgebound/issues"
},
"homepage": "https://github.com/code4history/MaplatEdgebound#readme",
"keywords": [
"triangulation",
"GIS",
"Maplat",
"Delaunator",
"edge",
"constrain"
],
"peerDependencies": {
"delaunator": "^5.0.0"
},
"dependencies": {
"robust-predicates": "^3.0.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/delaunator": "^5.0.0",
"@types/node": "^22.10.2",
"@types/robust-segment-intersect": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitest/coverage-v8": "^3.2.4",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"jest-matcher-deep-close-to": "^3.0.2",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"robust-segment-intersect": "^1.0.1",
"typescript": "^5.7.2",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.4.0",
"vitest": "^3.2.4"
}
}