2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/package.json

70 lines
1.6 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": "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",
"file-saver": "^2.0.2",
"frappejs": "github:thefalconx33/frappejs#test",
"nodemailer": "^4.7.0",
"popper.js": "^1.14.4",
"vue-color": "^2.7.0",
"vue-toasted": "^1.1.25"
}
}