forked from SPGoding/datapack-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.71 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "datapack-json",
"version": "2.0.15",
"publisher": "SPGoding",
"engines": {
"vscode": "^1.22.0"
},
"license": "MIT",
"displayName": "Datapack Helper Plus (JSON)",
"description": "Provides JSON validations for Minecraft datapacks.",
"categories": [
"Linters",
"Other"
],
"keywords": [
"minecraft",
"datapack",
"json"
],
"devDependencies": {
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"gitmoji-cli": "^3.0.0",
"semantic-release": "^17.0.0",
"semantic-release-gitmoji": "^1.3.0",
"semantic-release-vsce": "^3.0.1"
},
"contributes": {
"languages": [
{
"id": "json",
"extensions": [
"mcmeta"
]
}
],
"jsonValidation": [
{
"fileMatch": "pack.mcmeta",
"url": "./src/pack.mcmeta.json"
},
{
"fileMatch": "data/*/advancements/*.json",
"url": "./src/advancement.json"
},
{
"fileMatch": "data/*/loot_tables/*.json",
"url": "./src/loot_table.json"
},
{
"fileMatch": "data/*/predicates/*.json",
"url": "./src/predicate.json"
},
{
"fileMatch": "data/*/recipes/*.json",
"url": "./src/recipe.json"
},
{
"fileMatch": "data/*/tags/blocks/*.json",
"url": "./src/tags/block.json"
},
{
"fileMatch": "data/*/tags/entity_types/*.json",
"url": "./src/tags/entity_type.json"
},
{
"fileMatch": "data/*/tags/fluids/*.json",
"url": "./src/tags/fluid.json"
},
{
"fileMatch": "data/*/tags/functions/*.json",
"url": "./src/tags/function.json"
},
{
"fileMatch": "data/*/tags/items/*.json",
"url": "./src/tags/item.json"
}
]
},
"icon": "icon.png",
"scripts": {
"commit": "gitmoji -c",
"convert": "node ./utils/convert.js",
"release": "semantic-release",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/SPGoding/datapack-json.git"
},
"bugs": {
"url": "https://github.com/SPGoding/datapack-json/issues"
},
"homepage": "https://github.com/SPGoding/datapack-json#readme"
}