-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
83 lines (83 loc) · 2.46 KB
/
package.json
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "objtoschematic",
"private": true,
"version": "0.0.0",
"description": "A tool to convert 3D models into Minecraft formats such as .schematic, .litematic, .schem and .nbt",
"main": "./dist/src/main.js",
"engines": {
"node": ">=16.8.0"
},
"scripts": {
"lint": "eslint --fix src tools tests --ext .ts",
"lint-src": "eslint --fix src --ext .ts",
"test": "jest --config jestconfig.json",
"start": "webpack serve --config ./webpack.dev.js",
"dist": "webpack --config ./webpack.prod.js",
"atlas": "ts-node ./tools/build-atlas.ts",
"headless": "ts-node ./tools/run-headless.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucasDower/ObjToSchematic.git"
},
"author": "Lucas Dower",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/LucasDower/ObjToSchematic/issues"
},
"homepage": "https://github.com/LucasDower/ObjToSchematic#readme",
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/jest": "^27.4.1",
"@types/jquery": "^3.5.6",
"@types/merge-images": "^1.2.1",
"@types/pngjs": "^6.0.1",
"@types/prompt": "^1.1.2",
"@types/sharp": "^0.31.0",
"@types/varint": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"browserify-zlib": "^0.2.0",
"bvh-tree": "^1.0.1",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.7.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"file-loader": "^6.2.0",
"ga-gtag": "^1.1.7",
"hsv-rgb": "^1.0.0",
"html-webpack-plugin": "^5.5.0",
"i18next": "^22.4.14",
"jest": "^27.5.1",
"jpeg-js": "^0.4.4",
"json-loader": "^0.5.7",
"jszip": "^3.10.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"pngjs": "^7.0.0",
"prismarine-nbt": "^2.2.1",
"prompt": "^1.2.1",
"raw-loader": "^4.0.2",
"sharp": "^0.31.3",
"style-loader": "^3.3.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.1.0",
"twgl.js": "^5.3.0",
"typescript": "^4.3.5",
"varint-array": "^0.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpack-strip-block": "^0.3.0",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@loaders.gl/core": "^3.3.1",
"@loaders.gl/gltf": "^3.3.1",
"split.js": "^1.6.5"
}
}