openpencil/package.json
Danila Poyarkov 323a1f90c4 Migrate React → Vue 3 + VueUse + Reka UI
- Vue 3 SFC components with <script setup>
- Reactive store (Vue reactivity) replacing React refs/state
- Composables: useCanvas, useCanvasInput, useKeyboard
- Components: EditorCanvas, LayersPanel, PropertiesPanel, Toolbar
- Floating toolbar (Figma UI3 style) with pill shape + shadow
- Properties panel with Design/Prototype tabs + zoom display
- Sections: Position, Rotation, Layout, Appearance, Fill, Stroke, Effects, Export
- CSS custom properties for theming (--panel-bg, --border, --accent, etc.)
- Add Figma UI3 CDP inspection findings (toolbar, panels, sections)
2026-02-27 21:25:31 +03:00

39 lines
982 B
JSON

{
"name": "open-pencil-app",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "oxlint -c oxlint.json src/",
"format": "oxfmt --write src/",
"typecheck": "tsgo --noEmit",
"check": "bun run lint && bun run typecheck"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"@vueuse/core": "^14.2.1",
"canvaskit-wasm": "^0.40.0",
"kiwi-schema": "^0.5.0",
"reka-ui": "^2.8.2",
"vue": "^3.5.29",
"yoga-layout": "^3.2.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@typescript/native-preview": "^7.0.0-dev.20260227.1",
"@vitejs/plugin-vue": "^6.0.4",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"typescript": "~5.8.3",
"vite": "^7.0.4"
},
"patchedDependencies": {
"kiwi-schema@0.5.0": "patches/kiwi-schema@0.5.0.patch"
}
}