-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 960 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 960 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
31
32
33
34
35
36
37
38
{
"name": "ServerZ",
"version": "1.0.0",
"description": "DayZ server for containerized environments",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"build": "tsc",
"clean": "rm -rf dist"
},
"keywords": [
"DayZ",
"Server"
],
"author": "GodBleak",
"license": "MIT",
"dependencies": {
"@sinclair/typebox": "^0.34.41",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"cli-progress": "^3.12.0",
"config": "^4.1.1",
"dotenv": "^16.4.5",
"node-pty": "^1.0.0",
"simple-git": "^3.23.0",
"strip-ansi": "^7.1.0",
"unzipit": "^1.4.3"
},
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/node": "^20.11.26",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
}
}