-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "blockbench_plugin_template",
"title": "BlockBench Plugin Template",
"version": "1.0.0",
"tags": [
"Tag A",
"Tag B",
"Tag C"
],
"min_blockbench_version": "5.1.4",
"author": {
"name": "SnaveSutit",
"email": "snavesutit@gmail.com",
"url": "https://snavesutit.github.io/"
},
"repository": {
"type": "github",
"url": "https://github.com/SnaveSutit/blockbench-plugin-template"
},
"description": "An advanced Blockbench plugin template",
"main": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"private": true,
"scripts": {
"dev": "tsx .scripts/esbuild.ts --mode=dev",
"build": "tsx .scripts/esbuild.ts",
"test": "vitest",
"format": "prettier --write ."
},
"devDependencies": {
"@types/eslint": "^8.21.1",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"blockbench-patch-manager": "^1.0.2",
"blockbench-types": "^5.1.0-beta.1",
"esbuild": "^0.17.10",
"esbuild-plugin-import-folder": "^1.0.1",
"esbuild-plugin-import-glob": "^0.1.1",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-plugin-svelte": "^0.1.1",
"eslint": "^8.35.0",
"eslint-plugin-svelte": "^3.17.1",
"node-modules-vscode-problems-patch": "^1.0.9",
"prettier": "^3.8.3",
"simple-subpub": "^1.2.0",
"svelte": "^5.55.5",
"svelte-eslint-parser": "^1.6.0",
"svelte-observable-store": "^1.0.1",
"svelte-patching-tools": "^1.0.14",
"svelte-preprocess": "^5.0.1",
"svelte-preprocess-esbuild": "^3.0.1",
"ts-loader": "^9.2.6",
"typescript": "^5.5.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.5",
"vue": "2.7.14",
"js-yaml": "^4.1.0"
},
"license": "MIT"
}