first commit
This commit is contained in:
@@ -0,0 +1,79 @@
|
||||
{
|
||||
"name": "ctm-document-builder",
|
||||
"version": "1.2.2",
|
||||
"description": "CTM Document Builder — Electron + React with cloud PocketBase",
|
||||
"author": "Wirediv",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "dist-electron/main/index.js",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build && electron-builder",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tiptap/extension-placeholder": "^3.24.0",
|
||||
"@tiptap/extension-subscript": "^3.24.0",
|
||||
"@tiptap/extension-superscript": "^3.24.0",
|
||||
"@tiptap/extension-text-style": "^3.24.0",
|
||||
"@tiptap/pm": "^3.24.0",
|
||||
"@tiptap/react": "^3.24.0",
|
||||
"@tiptap/starter-kit": "^3.24.0",
|
||||
"lucide-react": "^1.3.0",
|
||||
"pdfjs-dist": "^4.10.38",
|
||||
"pocketbase": "^0.21.0",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitejs/plugin-react": "^4.3.3",
|
||||
"electron": "^33.2.0",
|
||||
"electron-builder": "^24.13.3",
|
||||
"vite": "^5.4.11",
|
||||
"vite-plugin-electron": "^0.29.0",
|
||||
"vite-plugin-electron-renderer": "^0.14.6"
|
||||
},
|
||||
"build": {
|
||||
"appId": "dev.ctm.document-builder",
|
||||
"productName": "CTM Document Builder",
|
||||
"files": [
|
||||
"dist-electron",
|
||||
"dist"
|
||||
],
|
||||
"directories": {
|
||||
"output": "release/${version}"
|
||||
},
|
||||
"extraResources": [
|
||||
{
|
||||
"from": "assets",
|
||||
"to": "assets",
|
||||
"filter": [
|
||||
"**/*"
|
||||
]
|
||||
}
|
||||
],
|
||||
"linux": {
|
||||
"target": [
|
||||
"AppImage"
|
||||
],
|
||||
"artifactName": "${productName}_${version}.${ext}"
|
||||
},
|
||||
"mac": {
|
||||
"icon": "assets/icon.icns",
|
||||
"target": [
|
||||
"dmg",
|
||||
"zip"
|
||||
],
|
||||
"identity": "-",
|
||||
"artifactName": "${productName}_${version}.${ext}"
|
||||
},
|
||||
"win": {
|
||||
"icon": "assets/icon.ico",
|
||||
"target": [
|
||||
"nsis"
|
||||
],
|
||||
"artifactName": "${productName}_${version}.${ext}"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user