{ "name": "objtoschematic", "private": true, "version": "0.7.0", "description": "A tool to convert .obj files into voxels and then into Minecraft Schematic files", "main": "./dist/src/main.js", "engines": { "node": ">=14.0.0" }, "scripts": { "lint": "eslint --fix src tools tests --ext .ts", "build": "tsc", "test": "jest --config jestconfig.json", "start": "npm run build && electron ./dist/src/main.js --enable-logging --remote-debugging-port=9222", "atlas": "node ./dist/tools/build-atlas.js", "palette": "node ./dist/tools/build-palette.js", "headless": "tsc && node ./dist/tools/run-headless.js", "package:win": "electron-packager . ObjToSchematic --overwrite --platform=win32 --arch=x64 --app-version=0.6.0 --prune=true", "package:linux": "electron-packager . ObjToSchematic --overwrite --platform=linux --arch=x64 --icon=res/static/icon.png --app-version=0.6.0 --prune=true", "package:macos": "electron-packager . ObjToSchematic --overwrite --platform=darwin --arch=x64 --icon=res/static/icon.icns --app-version=0.6.0 --prune=true" }, "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/obj-file-parser": "^0.5.0", "@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", "adm-zip": "^0.5.9", "chalk": "^4.1.2", "copy-dir": "^1.3.0", "electron": "^13.6.6", "electron-packager": "^15.2.0", "eslint": "^8.7.0", "eslint-config-google": "^0.14.0", "eslint-plugin-simple-import-sort": "^8.0.0", "images": "^3.2.3", "jest": "^27.5.1", "prompt": "^1.2.1", "sharp": "^0.31.1", "ts-jest": "^27.1.3", "ts-node": "^10.1.0", "typescript": "^4.3.5" }, "dependencies": { "bvh-tree": "^1.0.1", "jpeg-js": "^0.4.4", "pngjs": "^6.0.0", "prismarine-nbt": "^1.6.0", "twgl.js": "^4.19.1", "varint-array": "^0.0.0" } }