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

63 lines
1.4 KiB
JSON
Raw Normal View History

2018-01-08 12:29:49 +00:00
{
2018-02-12 16:23:14 +00:00
"name": "frappe-accounting",
"description": "Simple Accounting app for everyone",
"productName": "Frappe Accounting",
2018-05-08 10:16:09 +00:00
"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"
}
},
2018-10-21 07:56:06 +00:00
"main": "dist/electron/main.js",
2018-01-08 12:29:49 +00:00
"license": "MIT",
2018-02-16 13:14:38 +00:00
"scripts": {
"test": "mocha tests",
2018-10-20 12:32:01 +00:00
"start": "frappe start",
2018-10-23 18:39:22 +00:00
"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"
2018-02-16 13:14:38 +00:00
},
2018-01-08 12:29:49 +00:00
"dependencies": {
"frappejs": "github:frappe/frappejs",
2018-10-22 21:29:07 +00:00
"popper.js": "^1.14.4",
"vue-toasted": "^1.1.25"
2018-07-29 11:50:10 +00:00
}
2018-01-08 12:29:49 +00:00
}