-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.34 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "minecraft-cli-admin",
"version": "1.0.0",
"description": "Minecraft server management CLI with TUI dashboard",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/arthurr0/minecraft-cli-admin.git"
},
"bugs": {
"url": "https://github.com/arthurr0/minecraft-cli-admin/issues"
},
"homepage": "https://github.com/arthurr0/minecraft-cli-admin#readme",
"bin": {
"mc-cli": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run test && npm run build",
"prepare": "npm run build"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"execa": "^9.5.2",
"ink": "^5.1.0",
"ink-spinner": "^5.0.0",
"react": "^18.3.1",
"tail": "^2.2.6",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@types/react": "^18.3.18",
"ink-testing-library": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
}
}