studio/package.json
min c375ae01ac
All checks were successful
CI / Lint (pull_request) Successful in 1m6s
CI / Build (pull_request) Successful in 2m2s
CI / Secret scan (pull_request) Successful in 26s
CI / PR size check (pull_request) Successful in 7s
CI / Deploy to S1 + S2 (pull_request) Has been skipped
feat(rbxl-import): импорт Roblox .rbxl карт в Rublox-проекты
Тест-фича для МИНа. Полное описание в rbxl-importer/INFO_PROCESS.md.

Backend (rbxl-importer/ на VM 130 S1):
- Python-парсер Roblox Binary (28+ типов значений)
- Asset downloader через Marfusha proxy + .ROBLOSECURITY cookie
- Mesh→GLB конвертер (v1-v5)
- Converter Roblox-классов → project_data
- Flask API: /analyze + /create

Frontend:
- API.js + components/RbxlImportModal.jsx (drag-n-drop)

Тестовый импорт Easy Obby: project_id 2697,
2244 primitives + 742 lua-scripts + 5 ассетов.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-07 18:24:27 +03:00

73 lines
2.0 KiB
JSON

{
"name": "rublox-studio",
"version": "1.0.0",
"type": "module",
"description": "Open-source веб-студия для создания игр Рублокса — Babylon.js 7 + React 18 + Vite 5. Скриптинг на JS в Web Worker-песочнице.",
"keywords": [
"rublox",
"game-editor",
"babylonjs",
"3d-editor",
"voxel-editor",
"react",
"vite",
"geometry-dash",
"monaco"
],
"homepage": "https://rublox.pro",
"bugs": {
"url": "https://git.rublox.pro/rublox/studio/issues",
"email": "security@rublox.pro"
},
"repository": {
"type": "git",
"url": "git+ssh://git@git.rublox.pro:2222/rublox/studio.git"
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "Иванкова Виктория Сергеевна (ИП)",
"email": "maksimivankov26@yandex.ru",
"url": "https://rublox.pro"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .js,.jsx --max-warnings 200",
"format": "prettier --write \"src/**/*.{js,jsx,json,md,css}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,json,md,css}\"",
"fetch-assets": "node scripts/fetch-assets.js",
"postinstall": "node scripts/fetch-assets.js"
},
"dependencies": {
"@babylonjs/core": "7.54.3",
"@babylonjs/loaders": "7.54.3",
"@dimforge/rapier3d-compat": "^0.19.3",
"@monaco-editor/react": "^4.7.0",
"axios": "1.8.4",
"colyseus.js": "0.16.22",
"dompurify": "^3.0.0",
"html2canvas": "^1.4.0",
"jwt-decode": "4.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "7.4.0",
"socket.io-client": "^4.8.3",
"wasmoon": "^1.16.0"
},
"devDependencies": {
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "4.3.3",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.5",
"vite": "5.4.10"
},
"engines": {
"node": ">=18"
}
}