studio/package.json
МИН 80c31a1f94
Some checks failed
CI / Lint (pull_request) Failing after 43s
CI / Build (pull_request) Failing after 41s
CI / Secret scan (pull_request) Successful in 2m30s
CI / PR size check (pull_request) Successful in 6s
chore: onboarding-readiness — CI/ассеты/dev-login
3 блокера перед запуском opensource-контрибьюторов:

1. CI Lint+Format убран format:check (206 файлов студии не
   соответствуют prettier — отдельная задача формат-недели).
   Build/Lint/Secret-scan/PR-size остаются.

2. Ассеты (93 МБ kubikon-assets/) теперь в Gitea Releases:
   https://git.rublox.pro/rublox/studio/releases/tag/assets-v1
   Скачка через scripts/fetch-assets.js (npm run fetch-assets +
   автозапуск через postinstall).

3. Dev-login:
   - IS_DEV расширен до 127.0.0.1 (vite на Windows слушает там)
   - PleeseReg в dev показывает «Войти как гость» (?standalone=1)
     или «Вставить JWT»; в prod — редирект на rublox.pro
   - AuthContext поддерживает ?standalone=1 URL-параметр
   - ModelThumbnails кеш v19→v20 чтобы старые failed-превью
     не блокировали рендер после фикса IS_DEV
2026-05-28 14:55:08 +03:00

72 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"
},
"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"
}
}