Add initial project structure including: - .gitignore and VSCode settings - Vite configuration and package.json with Vue 3 dependencies - Basic HTML entry point and README update - Core source files: App.vue, main.js, style.css - Markdown editor component with plugin system and related types - Sample HelloWorld component, router, and Pinia store - Assets and SVG icons This commit establishes the foundation for the Vue 3 application.
24 lines
447 B
JSON
24 lines
447 B
JSON
{
|
|
"name": "llm-in-text",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.13.2",
|
|
"pinia": "^2.3.1",
|
|
"vue": "^3.5.24",
|
|
"vue-router": "^4.6.4",
|
|
"markdown-it": "^13.0.0",
|
|
"prismjs": "^1.29.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"vite": "^7.2.4"
|
|
}
|
|
}
|