This repository was archived by the owner on Jul 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 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
{
"name": "animated_java_exporter_plugin_template",
"title": "Animated Java Exporter Plugin Template",
"version": "1.0.0",
"tags": [
"Tag A",
"Tag B",
"Tag C"
],
"min_blockbench_version": "4.2.0",
"author": {
"name": "SnaveSutit",
"email": "snavesutit@gmail.com",
"url": "https://discordapp.com/users/213746232923783168"
},
"repository": {
"type": "github",
"url": "https://github.com/animated-java/animated-java-exporter-plugin-template"
},
"description": "An Animated Java Exporter plugin template",
"main": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"private": true,
"scripts": {
"build:scripts": "esbuild --bundle --platform=node --outfile=dist/build.cjs --packages=external ./tools/esbuild.ts",
"build:dev": "yarn build:scripts && node ./dist/build.cjs --mode=dev",
"build:prod": "yarn build:scripts && node ./dist/build.cjs",
"format": "prettier --write ."
},
"devDependencies": {
"@types/eslint": "^8.21.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"animated-java-api-types": "https://github.com/Animated-Java/animated-java-api-types.git",
"blockbench-types": "https://github.com/SnaveSutit/blockbench-types.git",
"esbuild": "^0.17.10",
"eslint": "^8.35.0",
"prettier": "^2.5.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"vue": "^3.2.33"
},
"dependencies": {},
"license": "MIT"
}