forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 846 Bytes
/
package.json
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
{
"name": "@example/geom-convex-hull",
"private": true,
"description": "Convex hull & shape clipping of 2D polygons",
"version": "0.0.1",
"repository": "https://github.com/thi-ng/umbrella",
"author": "Karsten Schmidt <k+npm@thi.ng>",
"license": "Apache-2.0",
"scripts": {
"start": "vite --host --open",
"build": "tsc && vite build --base='./'",
"preview": "vite preview --host --open"
},
"dependencies": {
"@thi.ng/geom": "workspace:^",
"@thi.ng/geom-api": "workspace:^",
"@thi.ng/hdom": "workspace:^",
"@thi.ng/hdom-canvas": "workspace:^"
},
"browser": {
"process": false,
"setTimeout": false,
"util": false
},
"thi.ng": {
"readme": [
"geom",
"geom-hull",
"hdom-canvas"
],
"screenshot": "examples/geom-convex-hull.png"
},
"devDependencies": {
"typescript": "^5.3.3",
"vite": "^5.0.10"
}
}