ObjToSchematic/package.json

37 lines
1.0 KiB
JSON
Raw Normal View History

2021-07-01 23:16:32 +08:00
{
"name": "objtoschematic",
2021-07-07 06:18:24 +08:00
"version": "0.2.0",
2021-07-01 23:16:32 +08:00
"description": "A tool to convert .obj files into voxels and then into Minecraft Schematic files",
"main": "main.js",
2021-07-07 06:18:24 +08:00
"engines": {"node": ">=14.0.0"},
2021-07-01 23:16:32 +08:00
"scripts": {
2021-07-04 23:30:20 +08:00
"start": "electron .",
"build": "electron-packager . ObjToSchematic --platform=win32 --arch=x64"
2021-07-01 23:16:32 +08:00
},
"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": {
"electron": "^13.1.4",
2021-07-04 23:30:20 +08:00
"electron-packager": "^15.2.0",
2021-07-07 21:40:42 +08:00
2021-07-04 23:30:20 +08:00
"twgl.js": "^4.19.1",
2021-07-07 21:40:42 +08:00
"wavefront-obj-parser": "^2.0.1",
"expand-vertex-data": "^1.1.2",
"prismarine-nbt": "^1.6.0"
2021-07-04 23:30:20 +08:00
},
"dependencies": {
2021-07-01 23:16:32 +08:00
"twgl.js": "^4.19.1",
2021-07-04 00:43:06 +08:00
"wavefront-obj-parser": "^2.0.1",
2021-07-07 21:40:42 +08:00
"expand-vertex-data": "^1.1.2",
"prismarine-nbt": "^1.6.0"
2021-07-01 23:16:32 +08:00
}
}