2021-07-01 23:16:32 +08:00
|
|
|
{
|
|
|
|
"name": "objtoschematic",
|
2022-09-12 02:46:24 +08:00
|
|
|
"private": true,
|
2023-03-02 02:06:13 +08:00
|
|
|
"version": "0.7.4",
|
2021-07-01 23:16:32 +08:00
|
|
|
"description": "A tool to convert .obj files into voxels and then into Minecraft Schematic files",
|
2022-03-23 04:02:27 +08:00
|
|
|
"main": "./dist/src/main.js",
|
2021-07-28 00:57:44 +08:00
|
|
|
"engines": {
|
2023-02-23 02:45:50 +08:00
|
|
|
"node": ">=16.8.0"
|
2021-07-28 00:57:44 +08:00
|
|
|
},
|
2021-07-01 23:16:32 +08:00
|
|
|
"scripts": {
|
2022-09-17 19:00:30 +08:00
|
|
|
"lint": "eslint --fix src tools tests --ext .ts",
|
2022-10-02 10:03:07 +08:00
|
|
|
"test": "jest --config jestconfig.json",
|
2023-03-02 02:06:13 +08:00
|
|
|
"start": "webpack serve --config ./webpack.dev.js",
|
|
|
|
"dist": "webpack --config ./webpack.prod.js",
|
|
|
|
"atlas": "ts-node ./tools/build-atlas.ts",
|
|
|
|
"palette": "ts-node ./tools/build-palette.ts",
|
|
|
|
"headless": "ts-node ./tools/run-headless.ts"
|
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": {
|
2022-10-05 01:06:53 +08:00
|
|
|
"@types/adm-zip": "^0.5.0",
|
2022-03-02 06:34:42 +08:00
|
|
|
"@types/jest": "^27.4.1",
|
2021-08-07 23:20:31 +08:00
|
|
|
"@types/jquery": "^3.5.6",
|
2022-10-05 01:06:53 +08:00
|
|
|
"@types/merge-images": "^1.2.1",
|
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-10-05 01:06:53 +08:00
|
|
|
"@types/sharp": "^0.31.0",
|
2022-07-09 08:08:58 +08:00
|
|
|
"@types/varint": "^6.0.0",
|
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",
|
2023-02-11 08:53:27 +08:00
|
|
|
"browserify-zlib": "^0.2.0",
|
2021-10-14 06:26:26 +08:00
|
|
|
"chalk": "^4.1.2",
|
2022-02-20 08:42:30 +08:00
|
|
|
"copy-dir": "^1.3.0",
|
2023-02-11 08:53:27 +08:00
|
|
|
"css-loader": "^6.7.3",
|
2022-01-17 07:47:19 +08:00
|
|
|
"eslint": "^8.7.0",
|
2022-03-24 05:51:26 +08:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2022-09-12 08:07:42 +08:00
|
|
|
"eslint-plugin-simple-import-sort": "^8.0.0",
|
2023-02-11 08:53:27 +08:00
|
|
|
"file-loader": "^6.2.0",
|
2023-03-02 02:06:13 +08:00
|
|
|
"html-webpack-plugin": "^5.5.0",
|
2021-10-14 06:26:26 +08:00
|
|
|
"images": "^3.2.3",
|
2022-03-02 06:34:42 +08:00
|
|
|
"jest": "^27.5.1",
|
2023-02-23 02:45:50 +08:00
|
|
|
"json-loader": "^0.5.7",
|
2023-02-11 08:53:27 +08:00
|
|
|
"node-polyfill-webpack-plugin": "^2.0.1",
|
2022-01-16 06:39:52 +08:00
|
|
|
"prompt": "^1.2.1",
|
2023-02-11 08:53:27 +08:00
|
|
|
"raw-loader": "^4.0.2",
|
2022-10-05 01:06:53 +08:00
|
|
|
"sharp": "^0.31.1",
|
2023-02-11 08:53:27 +08:00
|
|
|
"style-loader": "^3.3.1",
|
2022-03-02 06:34:42 +08:00
|
|
|
"ts-jest": "^27.1.3",
|
2023-02-11 08:53:27 +08:00
|
|
|
"ts-loader": "^9.4.2",
|
2021-08-03 04:52:58 +08:00
|
|
|
"ts-node": "^10.1.0",
|
2023-02-11 08:53:27 +08:00
|
|
|
"typescript": "^4.3.5",
|
|
|
|
"webpack": "^5.75.0",
|
|
|
|
"webpack-cli": "^5.0.1",
|
|
|
|
"webpack-dev-server": "^4.11.1",
|
|
|
|
"webpack-merge": "^5.8.0",
|
|
|
|
"webpack-strip-block": "^0.3.0"
|
2021-07-04 23:30:20 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-01 01:00:33 +08:00
|
|
|
"bvh-tree": "^1.0.1",
|
2022-06-18 02:15:25 +08:00
|
|
|
"jpeg-js": "^0.4.4",
|
2021-08-20 22:58:47 +08:00
|
|
|
"pngjs": "^6.0.0",
|
2021-07-28 00:57:44 +08:00
|
|
|
"prismarine-nbt": "^1.6.0",
|
2022-11-22 02:40:45 +08:00
|
|
|
"tga": "^1.0.7",
|
2022-07-09 08:08:58 +08:00
|
|
|
"twgl.js": "^4.19.1",
|
|
|
|
"varint-array": "^0.0.0"
|
2021-07-01 23:16:32 +08:00
|
|
|
}
|
2022-11-22 02:40:45 +08:00
|
|
|
}
|