forked from JannisX11/blockbench-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.23 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
{
"name": "azurelib_utils",
"version": "2.1.2",
"private": true,
"description": "AzureLib Animator",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack --watch --mode=development",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pretest": "npm run lint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "AzureDoom",
"license": "MIT",
"blockbenchConfig": {
"title": "AzureLib Animator",
"author": "AzureDoom",
"icon": "azureicon.png",
"description": "Create models, textures, and animations for AzureLib-powered mods using Bedrock-style tools.",
"min_version": "4.8.0",
"max_version": "15.0.0",
"new_repository_format": "true",
"await_loading": true,
"variant": "both",
"creation_date": "2023-04-04",
"contributes": {
"formats": ["azure_model"]
},
"has_changelog": true,
"website": "https://wiki.azuredoom.com/",
"tags": [
"Minecraft: Java Edition"
]
},
"sideEffects": [
"./index.js"
],
"devDependencies": {
"eol": "0.9.1",
"eslint": "8.46.0",
"webpack": "5.102.1",
"webpack-cli": "5.1.4"
},
"dependencies": {
"lodash": "^4.17.21",
"semver": "7.5.4"
}
}