aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 3ec1a2e4706217135b0a15d29c2848b81822d253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
  "name": "authorr",
  "version": "1.0.0",
  "description": "A Simple App for Book Authoring",
  "main": "main.js",
  "scripts": {
    "test": "build",
    "start": "electron ."
  },
  "build": {
    "appId": "xyz.kumarpriyansh.authorr",
    "productName": "Authorr",
    "copyright": "Copyright © 2019 Kumar Priyansh",
    "dmg": {
      "contents": [
        {
          "x": 150,
          "y": 220
        },
        {
          "x": 400,
          "y": 220,
          "type": "link",
          "path": "/Applications"
        }
      ]
    },
    "linux": {
      "target": [
        "deb"
      ]
    },
    "win": {
      "target": "NSIS"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/luciferreeves/authorr"
  },
  "keywords": [
    "authorr",
    "book",
    "writing",
    "authors"
  ],
  "author": "Kumar Priyansh <[email protected]>",
  "license": "Apache-2.0",
  "dependencies": {
    "local-storage": "^2.0.0"
  },
  "devDependencies": {
    "electron": "^5.0.3",
    "@fortawesome/fontawesome-free": "^5.9.0",
    "electron-builder": "^20.43.0"
  }
}