This commit is contained in:
2026-04-07 01:07:12 +03:00
parent b6287906a9
commit 7cf49ee1e4
24 changed files with 769 additions and 270 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
@@ -10,7 +10,12 @@
"test": "vitest",
"test:run": "vitest run",
"test:visual": "playwright test",
"test:visual:cross": "playwright test --project=cross-renderer"
"test:visual:cross": "playwright test --project=cross-renderer",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "oxfmt src/",
"format:check": "oxfmt --check src/",
"type-check": "vue-tsc -b --noEmit"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
@@ -25,18 +30,24 @@
"vue": "^3.5.31"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"@types/pngjs": "^6.0.5",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.0",
"eslint": "^10.2.0",
"eslint-plugin-vue": "^10.8.0",
"happy-dom": "^20.8.9",
"oxfmt": "^0.43.0",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.1",
"vitest": "^4.1.2",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.5"
}
}