-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.65 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
57
58
59
60
61
62
63
64
65
66
{
"name": "cyclops-clientdevbridge-cli",
"version": "0.1.1",
"description": "CLI that launches and drives a Minecraft dev client through the ClientDevBridge mod, for coding agents.",
"keywords": [
"minecraft",
"modding",
"cyclopsmc",
"agent",
"claude-code",
"testing"
],
"license": "MIT",
"author": "rubensworks (aka kroeser)",
"homepage": "https://github.com/CyclopsMC/clientdevbridge-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/CyclopsMC/clientdevbridge-cli.git"
},
"bugs": {
"url": "https://github.com/CyclopsMC/clientdevbridge-cli/issues"
},
"type": "module",
"bin": {
"clientdevbridge": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"version": "manual-git-changelog onversion",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix"
},
"dependencies": {
"commander": "^12.1.0",
"pixelmatch": "^6.0.0",
"pngjs": "^7.0.0",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/pngjs": "^6.0.5",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"manual-git-changelog": "^1.0.2",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}