biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / office / micropad / package.json
blob8e1ca96a0519546b79792acf844b470b10bffd26
2   "name": "micropad",
3   "version": "4.5.1",
4   "description": "A powerful note-taking app that helps you organise + take notes without restrictions.",
5   "main": "main.js",
6   "scripts": {
7     "start": "yarn build && yarn electron . --is-dev --no-sandbox",
8     "build": "yarn tsc -p tsconfig.json",
9     "update-core": "rm -rf core && rm -rf tmp && mkdir tmp && wget https://github.com/MicroPad/MicroPad-Core/releases/download/v${npm_package_version}/micropad.tar.xz -P ./tmp && cd tmp && tar -xf micropad.tar.xz && rm build/dist/*.map && cp -r build ../core && cd .. && rm -rf tmp",
10     "pack": "yarn build && yarn electron-builder --dir",
11     "dist": "yarn build && yarn electron-builder",
12     "windows:version": "echo %npm_package_version%"
13   },
14   "repository": {
15     "type": "git",
16     "url": "git+https://github.com/MicroPad/Electron.git"
17   },
18   "author": {
19     "name": "Nick Webster",
20     "email": "nick@nick.geek.nz"
21   },
22   "license": "MPL-2.0",
23   "bugs": {
24     "url": "https://github.com/MicroPad/Electron/issues"
25   },
26   "homepage": "https://getmicropad.com",
27   "devDependencies": {
28     "@types/mime": "^3.0.1",
29     "@types/node": "^18.7.18",
30     "@types/typo-js": "^1.2.1",
31     "electron": "^28.1.0",
32     "electron-builder": "^24.9.1",
33     "typescript": "~5.2.2"
34   },
35   "dependencies": {
36     "dictionary-en": "^3.0.0",
37     "dictionary-en-au": "^2.1.1",
38     "electron-context-menu": "^3.1.2",
39     "electron-window-state": "^5.0.3",
40     "localforage": "^1.10.0",
41     "mime": "^3.0.0",
42     "typo-js": "^1.2.3"
43   },
44   "build": {
45     "appId": "com.getmicropad.micropad",
46     "productName": "µPad",
47     "publish": {
48       "provider": "github",
49       "releaseType": "release"
50     },
51     "asarUnpack": [
52       "preload.js"
53     ],
54     "linux": {
55       "target": [
56         {
57           "target": "tar.gz",
58           "arch": [
59             "x64",
60             "armv7l",
61             "arm64"
62           ]
63         },
64         {
65           "target": "AppImage",
66           "arch": [
67             "x64",
68             "armv7l",
69             "arm64"
70           ]
71         },
72         "snap",
73         "deb",
74         "rpm",
75         "pacman"
76       ],
77       "executableName": "micropad",
78       "category": "Office",
79       "icon": "build/icons"
80     },
81     "pacman": {
82       "depends": [
83         "gtk3"
84       ]
85     },
86     "snap": {
87       "publish": {
88         "provider": "github",
89         "releaseType": "release"
90       }
91     },
92     "mac": {
93       "target": {
94         "target": "dmg",
95         "arch": "universal"
96       },
97       "category": "public.app-category.productivity",
98       "identity": null
99     },
100     "win": {
101       "target": [
102         {
103           "target": "nsis",
104           "arch": [
105             "x64",
106             "arm64"
107           ]
108         },
109         "portable"
110       ]
111     },
112     "nsis": {
113       "allowToChangeInstallationDirectory": true,
114       "oneClick": false
115     }
116   }