-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.72 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
{
"name": "action-minecraft-bedrock-diagnose",
"version": "1.21.44-0",
"description": "Tests the content of your minecraft project for errors and outputs them to the action console as well as mark it as failed",
"main": "out/src/action.js",
"scripts": {
"compile": "tsc && npx ncc build -m",
"build": "npm run clean && npm run compile",
"test": "mocha --debug-brk",
"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 -p ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blockception/action-minecraft-bedrock-diagnose.git"
},
"keywords": [
"github",
"action",
"minecraft",
"bedrock",
"diagnose",
"unittest"
],
"author": "Blockception Ltd",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Blockception/action-minecraft-bedrock-diagnose/issues"
},
"homepage": "https://github.com/Blockception/action-minecraft-bedrock-diagnose#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"bc-minecraft-bedrock-diagnoser": "^1.20.71-9",
"bc-minecraft-bedrock-project": "^1.20.71-14",
"bc-minecraft-bedrock-types": "^1.20.73",
"bc-minecraft-project": "^1.20.71-0",
"fast-glob": "^3.3.2",
"picomatch": "^4.0.2",
"vscode-languageserver-textdocument": "^1.0.12"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3",
"chai": "^5.1.2",
"mocha": "^11.0.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}