Replace hardcoded version strings with build-time injection: - Frontend: Vite __APP_VERSION__ from env or package.json - Backend: APP_VERSION env var exposed via /health endpoint - Docker: build arg propagated through both stages - CI: release workflow extracts version from git tag Document branching strategy and release process in CONTRIBUTING.md. Catch up CHANGELOG with v0.2.0 and Unreleased sections. Sync package.json version to 0.3.0.
39 lines
981 B
JSON
39 lines
981 B
JSON
{
|
|
"name": "docling-studio",
|
|
"version": "0.3.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"type-check": "vue-tsc --noEmit",
|
|
"preview": "vite preview",
|
|
"test": "vitest --watch",
|
|
"test:run": "vitest run",
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint src/ --fix",
|
|
"format": "prettier --write src/",
|
|
"format:check": "prettier --check src/"
|
|
},
|
|
"dependencies": {
|
|
"dompurify": "^3.3.3",
|
|
"marked": "^17.0.4",
|
|
"pinia": "^2.3.0",
|
|
"vue": "^3.4.0",
|
|
"vue-router": "^4.6.4"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.0.0",
|
|
"@vitest/mocker": "^4.1.2",
|
|
"@types/dompurify": "^3.2.0",
|
|
"@vitejs/plugin-vue": "^6.0.5",
|
|
"eslint": "^9.0.0",
|
|
"eslint-plugin-vue": "^9.32.0",
|
|
"prettier": "^3.4.0",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.57.1",
|
|
"vite": "^6.4.1",
|
|
"vitest": "^4.1.2",
|
|
"vue-tsc": "^2.2.12"
|
|
}
|
|
}
|