ObjToSchematic/package.json
2022-03-23 21:51:26 +00:00

60 lines
1.8 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/src/main.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "eslint --fix ./src/**/*.ts && eslint --fix ./tools/**/*.ts",
"debug": "tsc && electron ./dist/src/main.js --enable-logging",
"build": "npm run lint && tsc",
"test": "jest --config jestconfig.json",
"start": "npm run build && electron ./dist/src/main.js --enable-logging",
"atlas": "node ./dist/tools/build-atlas.js",
"palette": "node ./dist/tools/build-palette.js",
"headless": "node ./dist/tools/headless.js",
"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/jest": "^27.4.1",
"@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",
"copy-dir": "^1.3.0",
"electron": "^13.1.4",
"electron-packager": "^15.2.0",
"eslint": "^8.7.0",
"eslint-config-google": "^0.14.0",
"images": "^3.2.3",
"jest": "^27.5.1",
"prompt": "^1.2.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"color-convert": "^2.0.1",
"jpeg-js": "^0.4.3",
"pngjs": "^6.0.0",
"prismarine-nbt": "^1.6.0",
"twgl.js": "^4.19.1"
}
}