2021-07-01 23:16:32 +08:00
|
|
|
{
|
|
|
|
"name": "objtoschematic",
|
2021-08-20 22:55:19 +08:00
|
|
|
"version": "0.3.0",
|
2021-07-01 23:16:32 +08:00
|
|
|
"description": "A tool to convert .obj files into voxels and then into Minecraft Schematic files",
|
2021-08-03 04:52:58 +08:00
|
|
|
"main": "./dist/main.js",
|
2021-07-28 00:57:44 +08:00
|
|
|
"engines": {
|
|
|
|
"node": ">=14.0.0"
|
|
|
|
},
|
2021-07-01 23:16:32 +08:00
|
|
|
"scripts": {
|
2022-01-17 07:47:19 +08:00
|
|
|
"lint": "eslint --fix ./src/*.ts",
|
|
|
|
"build": "npm run lint && tsc",
|
2021-10-30 07:52:24 +08:00
|
|
|
"start": "npm run build && electron ./dist/main.js --enable-logging",
|
2021-10-14 06:26:26 +08:00
|
|
|
"atlas": "npx ts-node tools/build-atlas.ts",
|
2021-08-03 04:52:58 +08:00
|
|
|
"export": "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": {
|
2021-08-07 23:20:31 +08:00
|
|
|
"@types/jquery": "^3.5.6",
|
2021-08-03 23:08:45 +08:00
|
|
|
"@types/pngjs": "^6.0.1",
|
2022-01-16 06:39:52 +08:00
|
|
|
"@types/prompt": "^1.1.2",
|
2022-01-17 07:47:19 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.9.1",
|
|
|
|
"@typescript-eslint/parser": "^5.9.1",
|
2022-01-16 06:39:52 +08:00
|
|
|
"adm-zip": "^0.5.9",
|
2021-10-14 06:26:26 +08:00
|
|
|
"chalk": "^4.1.2",
|
2021-07-01 23:16:32 +08:00
|
|
|
"electron": "^13.1.4",
|
2021-07-04 23:30:20 +08:00
|
|
|
"electron-packager": "^15.2.0",
|
2022-01-17 07:47:19 +08:00
|
|
|
"eslint": "^8.7.0",
|
2021-10-14 06:26:26 +08:00
|
|
|
"images": "^3.2.3",
|
2022-01-16 06:39:52 +08:00
|
|
|
"prompt": "^1.2.1",
|
2021-08-03 04:52:58 +08:00
|
|
|
"ts-node": "^10.1.0",
|
2021-08-07 23:20:31 +08:00
|
|
|
"typescript": "^4.3.5"
|
2021-07-04 23:30:20 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-08-20 23:14:35 +08:00
|
|
|
"@popperjs/core": "^2.9.3",
|
2022-01-17 07:47:19 +08:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2021-07-07 21:40:42 +08:00
|
|
|
"expand-vertex-data": "^1.1.2",
|
2021-08-20 22:58:47 +08:00
|
|
|
"jpeg-js": "^0.4.3",
|
|
|
|
"pngjs": "^6.0.0",
|
2021-07-28 00:57:44 +08:00
|
|
|
"prismarine-nbt": "^1.6.0",
|
2021-08-20 22:58:47 +08:00
|
|
|
"twgl.js": "^4.19.1",
|
|
|
|
"wavefront-obj-parser": "^2.0.1"
|
2021-07-01 23:16:32 +08:00
|
|
|
}
|
|
|
|
}
|