-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.27 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.27 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
{
"devDependencies": {
"esbuild": "0.23.1",
"http-server": "^14.1.1",
"nodemon": "^3.1.4",
"typescript": "^5.5.4"
},
"scripts": {
"serve": "npx http-server",
"check": "npx tsc --noEmit",
"build-watch": "npx esbuild src/* --bundle --outdir=build --watch --format=esm",
"boids-watch": "npx esbuild src/boids.ts --bundle --outdir=build --watch --format=esm",
"celtic-watch": "npx esbuild src/celtic.ts --bundle --outdir=build --watch --format=esm",
"excoffizer-watch": "npx esbuild src/excoffizer.ts --bundle --outdir=build --watch --format=esm",
"dts-watch": "npx esbuild src/dts.ts src/dts-ww.ts --bundle --outdir=build --watch --format=esm",
"vector-field-watch": "npx esbuild src/vector-field.ts src/vector-field-ww.ts --bundle --outdir=build --watch --format=esm",
"gandalf-watch": "npx esbuild src/gandalf.ts src/gandalf-ww.ts --bundle --outdir=build --watch --format=esm",
"textorizer2-watch": "npx esbuild src/textorizer2.ts src/textorizer2-ww.ts --bundle --outdir=build --watch"
},
"dependencies": {
"@types/d3-delaunay": "^6.0.4",
"@types/delaunator": "^5.0.3",
"@types/seedrandom": "^3.0.8",
"@wemap/salesman.js": "^2.1.0",
"d3-delaunay": "^6.0.4",
"delaunator": "^5.0.1",
"seedrandom": "^3.0.5"
}
}