-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 851 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 851 Bytes
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
{
"name": "dmo-expositor",
"version": "1.0.0",
"description": "Sauerbraten demo expositor",
"main": "index.js",
"scripts": {
"start": "node build/src/main.js",
"build": "tsc -p tsconfig.json --declaration",
"package": "esbuild ./src/main.ts --bundle --platform=node --outfile=dist/main.cjs && pkg ./dist/main.cjs --out-path=./build -t latest-linux --compress GZip",
"build:watch": "tsc -w -p tsconfig.json"
},
"type": "module",
"author": "",
"license": "ISC",
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/ndjson": "^2.0.1",
"@types/node": "^18.11.9",
"esbuild": "^0.15.12",
"pkg": "^5.8.0",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"dependencies": {
"mathjs": "^11.5.0",
"minimist": "^1.2.7",
"ndjson": "^2.0.0",
"node-interval-tree": "^2.0.1"
}
}