2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/package.json
Faris Ansari c5fef9442a fix: SetupWizard
- White background
- Placeholders for inputs
2019-10-24 10:47:01 +05:30

74 lines
1.7 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",
"frappe-charts": "^1.2.4",
"frappejs": "https://github.com/frappe/frappejs",
"nodemailer": "^4.7.0",
"popper.js": "^1.14.4",
"vue-color": "^2.7.0",
"vue-toasted": "^1.1.25"
},
"devDependencies": {
"electron-builder": "^21.2.0"
}
}