forked from Blockception/BC-Minecraft-Bedrock-Diagnoser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.88 KB
/
package.json
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
{
"name": "bc-minecraft-bedrock-diagnoser",
"version": "1.21.44-1",
"description": "A typescript package library that provides diagnostics for minecraft bedrock projects",
"main": "./lib/src/main.js",
"types": "./lib/src/main.d.ts",
"scripts": {
"compile": "tsc -b",
"build": "npm run clean && npm run compile",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"test": "jest",
"lint": "eslint",
"clean": "rimraf lib",
"pretest": "npm run compile",
"prepublishOnly": "npm test && npm run compile",
"preversion": "",
"postversion": "git push && git push --tags",
"version": "git add -A src",
"watch": "tsc -w"
},
"files": [
"lib/src/**/*.js",
"lib/src/**/*.js.map",
"lib/src/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Blockception/BC-Minecraft-Bedrock-Diagnoser.git"
},
"keywords": [
"diagnoser",
"diagnostics",
"minecraft",
"bedrock"
],
"author": "BlockceptionLtd",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Blockception/BC-Minecraft-Bedrock-Diagnoser/issues"
},
"homepage": "https://github.com/Blockception/BC-Minecraft-Bedrock-Diagnoser#readme",
"dependencies": {
"bc-minecraft-bedrock-command": "^1.21.44-1",
"bc-minecraft-bedrock-project": "^1.21.44-1",
"bc-minecraft-bedrock-types": "^1.21.44-0",
"bc-minecraft-bedrock-vanilla-data": "^1.21.44-1",
"bc-minecraft-molang": "^1.21.44-1",
"bc-minecraft-project": "^1.21.44-0",
"jsonc": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"eslint": "^9.9.1",
"eslint-plugin-jest": "^28.8.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"typescript-eslint": "^8.4.0"
}
}