- Deleted redundant components (`AddActionButton`, `AlertBox`, `AlertStack`, `BackButton`, `CancelButton`, and `CollapsableArea`) and related files. - Removed unused models (`Book`, `BookSerie`, `BookTables`, `Character`, and `Chapter`) to reduce codebase clutter. - Updated project structure and references to reflect these removals.
127 lines
3.1 KiB
JSON
127 lines
3.1 KiB
JSON
{
|
|
"name": "eritorsscribe",
|
|
"productName": "ERitors Scribe",
|
|
"version": "0.4.1",
|
|
"type": "module",
|
|
"main": "dist/electron/main.js",
|
|
"scripts": {
|
|
"dev": "vite --port 4000",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"tauri:dev": "tauri dev",
|
|
"tauri:build": "tauri build"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"devDependencies": {
|
|
"@electron/notarize": "^3.1.1",
|
|
"@tauri-apps/cli": "^2.10.1",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/node": "^24.10.1",
|
|
"@types/pdfkit": "^0.17.5",
|
|
"@types/react": "^19.2.5",
|
|
"@types/react-dom": "^19.2.3",
|
|
"concurrently": "^9.2.1",
|
|
"dotenv": "^17.2.3",
|
|
"electron": "^39.2.1",
|
|
"electron-builder": "^26.0.12",
|
|
"typescript": "^5.9.3",
|
|
"wait-on": "^9.0.3"
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/postcss": "^4.1.17",
|
|
"@tauri-apps/api": "^2.10.1",
|
|
"@tauri-apps/plugin-shell": "^2.3.5",
|
|
"@tiptap/extension-color": "^3.10.7",
|
|
"@tiptap/extension-gapcursor": "^3.10.7",
|
|
"@tiptap/extension-highlight": "^3.10.7",
|
|
"@tiptap/extension-text-align": "^3.10.7",
|
|
"@tiptap/extension-underline": "^3.10.7",
|
|
"@tiptap/react": "^3.10.7",
|
|
"@tiptap/starter-kit": "^3.10.7",
|
|
"@types/bcrypt": "^6.0.0",
|
|
"@vitejs/plugin-react": "^6.0.1",
|
|
"autoprefixer": "^10.4.22",
|
|
"axios": "^1.13.2",
|
|
"bcrypt": "^6.0.0",
|
|
"docx": "^9.5.3",
|
|
"electron-updater": "^6.7.3",
|
|
"i18next": "^25.10.4",
|
|
"jszip": "^3.10.1",
|
|
"lucide-react": "^0.577.0",
|
|
"node-sqlite3-wasm": "^0.8.51",
|
|
"pdfkit": "^0.17.2",
|
|
"postcss": "^8.5.6",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"react-i18next": "^16.6.1",
|
|
"react-router-dom": "^7.13.1",
|
|
"tailwindcss": "^4.1.17",
|
|
"vite": "^8.0.1"
|
|
},
|
|
"build": {
|
|
"appId": "com.eritors.scribe.desktop",
|
|
"productName": "ERitors Scribe",
|
|
"buildDependenciesFromSource": false,
|
|
"nodeGypRebuild": false,
|
|
"npmRebuild": false,
|
|
"files": [
|
|
"dist/**/*",
|
|
"out/**/*",
|
|
"build/**/*",
|
|
"package.json"
|
|
],
|
|
"asarUnpack": [
|
|
"out/**/*"
|
|
],
|
|
"directories": {
|
|
"output": "release"
|
|
},
|
|
"mac": {
|
|
"icon": "build/icons/mac/icon.icns",
|
|
"target": [
|
|
"dmg",
|
|
"zip"
|
|
],
|
|
"category": "public.app-category.productivity",
|
|
"hardenedRuntime": true,
|
|
"gatekeeperAssess": false,
|
|
"entitlements": "build/entitlements.mac.plist",
|
|
"entitlementsInherit": "build/entitlements.mac.plist"
|
|
},
|
|
"afterSign": "scripts/notarize.cjs",
|
|
"win": {
|
|
"icon": "build/icons/win/icon.ico",
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"x64",
|
|
"ia32"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"linux": {
|
|
"icon": "build/icons/png",
|
|
"target": [
|
|
"AppImage",
|
|
"deb"
|
|
],
|
|
"category": "Utility"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true
|
|
},
|
|
"publish": {
|
|
"provider": "generic",
|
|
"url": "https://eritors.com/download/app/desktop"
|
|
}
|
|
}
|
|
}
|