This commit is contained in:
Rene Kievits
2025-12-18 01:30:52 +01:00
commit 6438660b03
78 changed files with 14230 additions and 0 deletions

47
client/package.json Normal file
View File

@@ -0,0 +1,47 @@
{
"name": "zen-kanji-client",
"version": "0.0.0",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:style": "stylelint \"**/*.{css,scss,vue}\"",
"lint:style:fix": "stylelint \"**/*.{css,scss,vue}\" --fix",
"dev": "vite",
"build": "vite build",
"build:android": "vite build --mode android",
"preview": "vite preview"
},
"dependencies": {
"@capacitor/android": "^8.0.0",
"@capacitor/core": "^8.0.0",
"@mdi/font": "^7.3.67",
"capacitor": "^0.5.6",
"i18n": "^0.15.3",
"pinia": "^3.0.4",
"pug": "^3.0.3",
"vue": "^3.3.4",
"vue-i18n": "^11.2.2",
"vue-pug": "^1.0.2",
"vue-pug-plugin": "^2.0.4",
"vue-router": "^4.2.5",
"vuetify": "^3.4.0"
},
"devDependencies": {
"@capacitor/cli": "^7.4.4",
"@eslint/js": "^9.39.2",
"@vitejs/plugin-vue": "^6.0.3",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-plugin-jsonc": "^2.21.0",
"eslint-plugin-vue": "^9.33.0",
"eslint-plugin-vue-pug": "^0.6.2",
"globals": "^16.5.0",
"sass": "^1.97.0",
"stylelint": "^16.26.1",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-config-standard-scss": "^16.0.0",
"vite": "^7.3.0",
"vue-eslint-parser": "^9.4.3"
}
}