-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "blockbench-bbmodel-text",
"version": "0.1.0",
"description": "Semantic editable text components for Blockbench .bbmodel files",
"main": "dist/bbmodel-text-component.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"test": "node tests/layout.test.cjs && node tests/rotation.test.cjs && node tests/style.test.cjs && node tests/i18n.test.cjs && node tests/text-element-contract.test.cjs && node tests/plugin-id.test.cjs",
"typecheck": "tsc --noEmit"
},
"keywords": [
"blockbench",
"plugin",
"bbmodel",
"text",
"minecraft"
],
"author": "EaseCation",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.13.14",
"blockbench-types": "^5.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/EaseCation/blockbench-bbmodel-text.git"
},
"bugs": {
"url": "https://github.com/EaseCation/blockbench-bbmodel-text/issues"
},
"homepage": "https://github.com/EaseCation/blockbench-bbmodel-text#readme",
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"THIRD_PARTY_LICENSES.md"
]
}