upload to github

This commit is contained in:
jrosh 2025-05-29 13:41:38 +02:00
commit 92cc81e813
No known key found for this signature in database
GPG key ID: A4D68DCA6C9CCD2D
51 changed files with 8041 additions and 0 deletions

29
package.json Normal file
View file

@ -0,0 +1,29 @@
{
"name": "e-inn-reader",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build"
},
"dependencies": {
"epubjs": "^0.3.93",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.1",
"@types/node": "^22.14.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/tsconfig": "^0.7.0",
"npm-run-all2": "^7.0.2",
"typescript": "~5.8.0",
"vite": "^6.2.4",
"vite-plugin-vue-devtools": "^7.7.2",
"vue-tsc": "^2.2.8"
}
}