mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
67 lines
1.5 KiB
JSON
67 lines
1.5 KiB
JSON
{
|
|
"name": "frappe-accounting",
|
|
"description": "Simple Accounting app for everyone",
|
|
"productName": "Frappe Accounting",
|
|
"version": "0.0.2",
|
|
"author": {
|
|
"name": "Frappe Technologies Pvt. Ltd.",
|
|
"email": "hello@frappe.io"
|
|
},
|
|
"build": {
|
|
"asarUnpack": [
|
|
"node_modules/sharp"
|
|
],
|
|
"productName": "Frappe Accounting",
|
|
"appId": "io.frappe.accounting",
|
|
"directories": {
|
|
"output": "build"
|
|
},
|
|
"files": [
|
|
"dist/electron"
|
|
],
|
|
"dmg": {
|
|
"contents": [
|
|
{
|
|
"x": 410,
|
|
"y": 150,
|
|
"type": "link",
|
|
"path": "/Applications"
|
|
},
|
|
{
|
|
"x": 130,
|
|
"y": 150,
|
|
"type": "file"
|
|
}
|
|
]
|
|
},
|
|
"mac": {
|
|
"target": "dmg",
|
|
"icon": "build/icons/icon.icns"
|
|
},
|
|
"win": {
|
|
"target": "nsis",
|
|
"icon": "build/icons/icon.ico"
|
|
},
|
|
"linux": {
|
|
"target": "AppImage",
|
|
"icon": "build/icons"
|
|
}
|
|
},
|
|
"main": "dist/electron/main.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "mocha tests",
|
|
"start": "frappe start",
|
|
"electron": "cross-env ELECTRON=true frappe start electron",
|
|
"pack-electron": "cross-env NODE_ENV=production ELECTRON=true frappe build electron",
|
|
"build-electron": "npm run pack-electron && electron-builder",
|
|
"postinstall": "electron-builder install-app-deps"
|
|
},
|
|
"dependencies": {
|
|
"cross-env": "^5.2.0",
|
|
"frappejs": "github:frappe/frappejs",
|
|
"popper.js": "^1.14.4",
|
|
"vue-toasted": "^1.1.25"
|
|
}
|
|
}
|