2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/package.json
2018-10-24 00:09:22 +05:30

63 lines
1.4 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/sqlite3"
],
"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": {
"icon": "build/icons/icon.icns"
},
"win": {
"icon": "build/icons/icon.ico"
},
"linux": {
"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": {
"frappejs": "github:frappe/frappejs",
"popper.js": "^1.14.4",
"vue-toasted": "^1.1.25"
}
}