Files
VRC-Circle/package.json
T

71 lines
2.4 KiB
JSON
Raw Normal View History

2026-06-25 19:25:00 +07:00
{
"name": "vrc-circle",
"version": "0.1.0",
"description": "An all-in-one VRChat Hub & Launcher",
"author": "YuzuZensai <yuzu@kirameki.cafe>",
"license": "MIT",
"main": "./out/main/index.js",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
2026-07-01 12:10:06 +07:00
"build": "pnpm run check && electron-vite build",
2026-06-25 19:25:00 +07:00
"preview": "electron-vite preview",
2026-07-01 12:19:27 +07:00
"test": "vitest run",
"test:watch": "vitest",
2026-06-25 19:25:00 +07:00
"start": "electron-vite preview",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "pnpm run typecheck:node && pnpm run typecheck:web",
2026-07-01 12:19:27 +07:00
"check": "pnpm run lint && pnpm run typecheck && pnpm run format && pnpm run test",
2026-06-25 19:25:00 +07:00
"lint": "eslint .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
2026-07-01 12:10:06 +07:00
"prepare": "husky",
2026-06-25 19:25:00 +07:00
"package": "pnpm run build && electron-builder --dir",
"package:run": "pnpm run package && open dist/mac*/'VRC Circle.app'",
2026-06-30 21:55:45 +07:00
"dist": "pnpm run build && electron-builder",
2026-06-30 21:59:21 +07:00
"build:win": "pnpm run build && electron-builder --win --publish never",
"build:mac": "pnpm run build && electron-builder --mac --publish never",
"build:linux": "pnpm run build && electron-builder --linux --publish never"
2026-06-25 19:25:00 +07:00
},
"dependencies": {
"electron-updater": "^6.3.9",
"i18next": "^26.3.2",
"keyv": "^5.2.3",
"keyv-file": "^5.1.2",
"lucide-react": "^1.21.0",
"react-i18next": "^17.0.8",
"sharp": "^0.35.2",
2026-06-30 20:45:16 +07:00
"vrchat": "2.21.8-nightly.16",
2026-06-25 19:25:00 +07:00
"ws": "^8.18.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.1",
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react": "^4.3.4",
2026-07-28 18:16:28 +00:00
"electron": "^39.8.5",
2026-06-25 19:25:00 +07:00
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
2026-07-01 12:10:06 +07:00
"husky": "^9.1.7",
2026-06-25 19:25:00 +07:00
"playwright-core": "^1.61.1",
"prettier": "^3.6.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.3.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.62.0",
2026-07-01 12:19:27 +07:00
"vite": "^6.0.7",
"vitest": "^4.1.9"
2026-06-25 19:25:00 +07:00
},
"packageManager": "pnpm@10.33.0"
}