blockbench-types 4.9.0 → 4.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierignore +1 -0
- package/.prettierrc.json +9 -0
- package/README.md +1 -0
- package/package.json +43 -33
- package/scripts/generate_docs.js +243 -196
- package/tsconfig.json +13 -14
- package/types/action.d.ts +358 -279
- package/types/animation.d.ts +181 -147
- package/types/animation_controller.d.ts +105 -99
- package/types/blockbench.d.ts +136 -76
- package/types/canvas.d.ts +239 -228
- package/types/canvas_frame.d.ts +2 -2
- package/types/codec.d.ts +36 -32
- package/types/cube.d.ts +32 -11
- package/types/desktop.d.ts +14 -0
- package/types/dialog.d.ts +143 -38
- package/types/display_mode.d.ts +9 -6
- package/types/file_system.d.ts +159 -0
- package/types/format.d.ts +46 -12
- package/types/global.d.ts +49 -3
- package/types/group.d.ts +16 -5
- package/types/index.d.ts +1 -0
- package/types/interface.d.ts +21 -12
- package/types/io.d.ts +2 -2
- package/types/keyframe.d.ts +72 -58
- package/types/legacy.d.ts +2 -1
- package/types/math_util.d.ts +1 -1
- package/types/menu.d.ts +93 -78
- package/types/mesh.d.ts +89 -64
- package/types/misc.d.ts +114 -47
- package/types/mode.d.ts +14 -1
- package/types/molang.d.ts +17 -0
- package/types/outliner.d.ts +42 -23
- package/types/painter.d.ts +49 -11
- package/types/panel.d.ts +49 -21
- package/types/plugin.d.ts +28 -0
- package/types/preview.d.ts +71 -69
- package/types/preview_scene.d.ts +11 -12
- package/types/project.d.ts +54 -37
- package/types/screencam.d.ts +11 -6
- package/types/settings.d.ts +87 -85
- package/types/shared_actions.d.ts +25 -9
- package/types/texture_layers.d.ts +104 -105
- package/types/textures.d.ts +322 -313
- package/types/timeline.d.ts +60 -60
- package/types/undo.d.ts +107 -103
- package/types/util.d.ts +152 -37
- package/types/uveditor.d.ts +3 -0
- package/types/validator.d.ts +3 -2
- package/types/vue.d.ts +7 -0
package/.prettierignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
node_modules
|
package/.prettierrc.json
ADDED
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,35 +1,45 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "blockbench-types",
|
|
3
|
+
"version": "4.10.0",
|
|
4
|
+
"description": "Blockbench typescript types",
|
|
5
|
+
"main": "",
|
|
6
|
+
"types": "types/index.d.ts",
|
|
7
|
+
"typeScriptVersion": "3.2",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/JannisX11/blockbench-types.git"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"blockbench"
|
|
14
|
+
],
|
|
15
|
+
"author": "JannisX11",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/JannisX11/blockbench-types/issues"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"lint": "prettier -w .",
|
|
21
|
+
"generate": "node ./scripts/generate_docs.js",
|
|
22
|
+
"generate-wiki": "node ./scripts/generate_docs.js --out \"../../blockbench.net/content/api/\""
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/JannisX11/blockbench-types#readme",
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@babel/types": "^7.20.7",
|
|
27
|
+
"@types/dompurify": "^3.0.5",
|
|
28
|
+
"@types/jquery": "^3.5.4",
|
|
29
|
+
"@types/prismjs": "^1.26.0",
|
|
30
|
+
"@types/three": "^0.129.2",
|
|
31
|
+
"@types/tinycolor2": "^1.4.6",
|
|
32
|
+
"dompurify": "^3.0.1",
|
|
33
|
+
"electron": "^30.0.2",
|
|
34
|
+
"prismjs": "^1.29.0",
|
|
35
|
+
"tinycolor2": "^1.6.0",
|
|
36
|
+
"typescript": "^4.9.5",
|
|
37
|
+
"vue": "^3.2.45",
|
|
38
|
+
"wintersky": "^1.3.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^18.14.6",
|
|
42
|
+
"prettier": "^2.8.3",
|
|
43
|
+
"typedoc": "^0.23.24"
|
|
44
|
+
}
|
|
35
45
|
}
|