This repository was archived by the owner on Mar 26, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"name": "@lpsmods/mc-dev",
"version": "0.0.1",
"author": "legopitstop",
"license": "MIT",
"description": "Debug utilities for Minecraft Bedrock Edition Add-On development.",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "node build.mjs",
"test": "echo test",
"lint": "eslint ."
},
"homepage": "https://docs.lpsmods.dev/@lpsmods/mc-dev",
"funding": "https://github.com/sponsors/legopitstop",
"repository": {
"type": "git",
"url": "https://github.com/lpsmods/mc-dev"
},
"bugs": {
"url": "https://github.com/lpsmods/mc-dev/issues"
},
"keywords": [
"minecraft",
"bedrock",
"utils",
"addons",
"scripting",
"developer"
],
"devDependencies": {
"@minecraft/core-build-tasks": "^5.5.0",
"@types/pako": "^2.0.4",
"@typescript-eslint/eslint-plugin": "8.46.2",
"chokidar-cli": "3.0.0",
"eslint": "^9.38.0",
"eslint-plugin-minecraft-linting": "2.0.10",
"eslint-plugin-unused-imports": "^4.3.0",
"glob": "^11.1.0",
"path": "^0.12.7",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "5.9.3",
"vitest": "^4.0.7"
},
"peerDependencies": {
"@minecraft/math": "^2.2.11",
"@minecraft/server": "^2.3.0",
"@minecraft/server-ui": "^2.0.0"
},
"dependencies": {
"@lpsmods/mc-utils": "^0.0.8"
}
}