* feat(S01/T01): Scaffolded the `studio` Electron workspace with a workin… - package.json - studio/package.json - studio/electron.vite.config.ts - studio/src/main/index.ts - studio/src/preload/index.ts - studio/src/renderer/src/styles/index.css - studio/src/renderer/src/App.tsx * chore: init gsd * fix(ci): add safe.directory for containerized pipeline job The Dev Publish job runs inside a Docker container where the checkout user differs from the container user (root), causing git's dubious ownership check to reject git operations in version-stamp. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(ci): remove .gsd/.gitignore from tracking The no-gsd-dir CI check fails when .gsd/ exists as a directory, even if only .gitignore is tracked inside it. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
784 B
JSON
31 lines
784 B
JSON
{
|
|
"name": "@gsd/studio",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"main": "dist/main/index.js",
|
|
"scripts": {
|
|
"dev": "electron-vite dev",
|
|
"build": "electron-vite build",
|
|
"preview": "electron-vite preview",
|
|
"test": "node --test test/*.test.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@phosphor-icons/react": "^2.1.10",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"react-resizable-panels": "^4.7.3",
|
|
"zustand": "^5.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.2.1",
|
|
"@types/node": "^22.18.6",
|
|
"@types/react": "^19.2.2",
|
|
"@types/react-dom": "^19.2.2",
|
|
"@vitejs/plugin-react": "^5.1.0",
|
|
"electron": "^41.0.3",
|
|
"electron-vite": "^5.0.0",
|
|
"tailwindcss": "^4.2.1",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|