ObjToSchematic/package.json
2022-02-06 18:11:45 +00:00

58 lines
1.7 KiB
JSON

{
"name": "objtoschematic",
"version": "0.4.0",
"description": "A tool to convert .obj files into voxels and then into Minecraft Schematic files",
"main": "./dist/main.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "eslint --fix ./src/**/*.ts",
"debug": "tsc && electron ./dist/main.js --enable-logging",
"build": "npm run lint && tsc",
"start": "npm run build && electron ./dist/main.js --enable-logging",
"atlas": "npx ts-node tools/build-atlas.ts",
"export": "electron-packager . ObjToSchematic --platform=win32 --arch=x64"
},
"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/jquery": "^3.5.6",
"@types/obj-file-parser": "^0.5.0",
"@types/pngjs": "^6.0.1",
"@types/prompt": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"adm-zip": "^0.5.9",
"chalk": "^4.1.2",
"electron": "^13.1.4",
"electron-packager": "^15.2.0",
"eslint": "^8.7.0",
"images": "^3.2.3",
"prompt": "^1.2.1",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@popperjs/core": "^2.9.3",
"eslint-config-google": "^0.14.0",
"expand-vertex-data": "^1.1.2",
"jpeg-js": "^0.4.3",
"mesh-simplify": "^2.0.0",
"mtltojs": "^0.2.1",
"obj-file-parser": "^0.5.3",
"pngjs": "^6.0.0",
"prismarine-nbt": "^1.6.0",
"twgl.js": "^4.19.1",
"wavefront-obj-parser": "^2.0.1"
}
}