Socialify

Folder ..

Viewing package.json
56 lines (56 loc) • 1.1 KB

 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
{
  "name": "authorr",
  "version": "1.0.0",
  "description": "A Simple App for Book Authoring",
  "main": "main.js",
  "scripts": {
    "test": "build",
    "start": "electron src/main.js"
  },
  "build": {
    "appId": "xyz.kumarpriyansh.authorr",
    "productName": "Authorr",
    "copyright": "Copyright © 2019 Kumar Priyansh",
    "icon": "docs/logo/logo_small.icns",
    "dmg": {
      "contents": [
        {
          "x": 150,
          "y": 220
        },
        {
          "x": 400,
          "y": 220,
          "type": "link",
          "path": "/Applications"
        }
      ],
      "icon": "docs/logo/mounted.icns"
    },
    "linux": {
      "target": [
        "deb"
      ]
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/luciferreeves/authorr"
  },
  "keywords": [
    "authorr",
    "book",
    "writing",
    "authors"
  ],
  "author": "Kumar Priyansh <[email protected]>",
  "license": "Apache-2.0",
  "dependencies": {
    "jquery": "^3.5.1",
    "local-storage": "^2.0.0"
  },
  "devDependencies": {
    "electron": "^9.1.0",
    "electron-builder": "^22.7.0"
  }
}