1 | {
|
2 | "name": "menubar",
|
3 | "version": "9.4.0",
|
4 | "author": "Max Ogden",
|
5 | "bugs": {
|
6 | "url": "https://github.com/maxogden/menubar/issues"
|
7 | },
|
8 | "description": "high level way to create menubar desktop applications with electron",
|
9 | "files": [
|
10 | "/assets",
|
11 | "/lib"
|
12 | ],
|
13 | "homepage": "https://github.com/maxogden/menubar",
|
14 | "keywords": [
|
15 | "electron",
|
16 | "shell",
|
17 | "menubar",
|
18 | "menu",
|
19 | "taskbar",
|
20 | "tray",
|
21 | "traybar",
|
22 | "mac",
|
23 | "linux",
|
24 | "windows",
|
25 | "app"
|
26 | ],
|
27 | "license": "BSD-2-Clause",
|
28 | "main": "lib/index.js",
|
29 | "publishConfig": {
|
30 | "access": "public"
|
31 | },
|
32 | "repository": {
|
33 | "type": "git",
|
34 | "url": "https://github.com/maxogden/menubar.git"
|
35 | },
|
36 | "scripts": {
|
37 | "build": "rimraf lib/ && tsc",
|
38 | "deploy": "yarn build && standard-version",
|
39 | "docs": "typedoc",
|
40 | "lint": "tsc --noEmit && eslint . --ext js,ts",
|
41 | "test": "jest"
|
42 | },
|
43 | "types": "lib/index.d.ts",
|
44 | "dependencies": {
|
45 | "electron-positioner": "^4.1.0"
|
46 | },
|
47 | "devDependencies": {
|
48 | "@amaurym/config": "^1.3.5",
|
49 | "@types/jest": "^25.2.3",
|
50 | "electron": "^27.1.0",
|
51 | "jest": "^26.0.1",
|
52 | "rimraf": "^3.0.2",
|
53 | "standard-version": "^8.0.0",
|
54 | "ts-jest": "^26.0.0",
|
55 | "typedoc": "^0.17.7",
|
56 | "typedoc-plugin-markdown": "^2.2.17",
|
57 | "typedoc-plugin-no-inherit": "^1.1.10",
|
58 | "typescript": "^4.6.2"
|
59 | },
|
60 | "peerDependencies": {
|
61 | "electron": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0 || ^23.0.0 || ^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0"
|
62 | }
|
63 | }
|