valheim-oz-dsm 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "valheim-oz-dsm",
3
+ "version": "1.0.0",
4
+ "description": "Land of OZ - Valheim Dedicated Server Manager",
5
+ "type": "module",
6
+ "bin": {
7
+ "oz-valheim": "./dist/main.js"
8
+ },
9
+ "main": "./dist/main.js",
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE",
14
+ "CHANGELOG.md"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public",
18
+ "registry": "https://registry.npmjs.org/"
19
+ },
20
+ "scripts": {
21
+ "dev": "tsx watch main.ts",
22
+ "start": "tsx main.ts",
23
+ "build": "tsup",
24
+ "test": "vitest run",
25
+ "test:watch": "vitest",
26
+ "test:coverage": "vitest run --coverage",
27
+ "lint": "biome check .",
28
+ "lint:fix": "biome check --write .",
29
+ "format": "biome format --write .",
30
+ "typecheck": "tsc --noEmit",
31
+ "prepare": "tsx scripts/install-hooks.ts",
32
+ "prepublishOnly": "npm run typecheck && npm run lint && npm test && npm run build"
33
+ },
34
+ "dependencies": {
35
+ "@caleb-collar/steamcmd": "^1.1.0",
36
+ "conf": "^13.0.1",
37
+ "fullscreen-ink": "^0.1.0",
38
+ "ink": "^6.6.0",
39
+ "react": "^19.2.4",
40
+ "zod": "^4.3.6",
41
+ "zustand": "^5.0.3"
42
+ },
43
+ "devDependencies": {
44
+ "@biomejs/biome": "^2.3.13",
45
+ "@types/node": "^22.13.1",
46
+ "@types/react": "^19.2.10",
47
+ "@vitest/coverage-v8": "^3.2.4",
48
+ "tsup": "^8.3.6",
49
+ "tsx": "^4.19.2",
50
+ "typescript": "^5.7.3",
51
+ "vitest": "^3.0.4"
52
+ },
53
+ "engines": {
54
+ "node": ">=22.0.0"
55
+ },
56
+ "keywords": [
57
+ "valheim",
58
+ "dedicated-server",
59
+ "server-manager",
60
+ "tui",
61
+ "terminal"
62
+ ],
63
+ "license": "MIT",
64
+ "repository": {
65
+ "type": "git",
66
+ "url": "https://github.com/caleb-collar/land-of-oz-dsm-valheim"
67
+ }
68
+ }