1 | {
|
2 | "name": "menubar",
|
3 | "version": "9.5.1",
|
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:check": "biome check",
|
41 | "lint": "biome check --fix",
|
42 | "test": "jest"
|
43 | },
|
44 | "types": "lib/index.d.ts",
|
45 | "dependencies": {
|
46 | "electron-positioner": "^4.1.0"
|
47 | },
|
48 | "devDependencies": {
|
49 | "@biomejs/biome": "^1.9.3",
|
50 | "@types/jest": "^25.2.3",
|
51 | "electron": "^32.2.0",
|
52 | "jest": "^26.0.1",
|
53 | "rimraf": "^3.0.2",
|
54 | "standard-version": "^8.0.0",
|
55 | "ts-jest": "^26.0.0",
|
56 | "typedoc": "^0.17.7",
|
57 | "typedoc-plugin-markdown": "^2.2.17",
|
58 | "typedoc-plugin-no-inherit": "^1.1.10",
|
59 | "typescript": "^4.6.2"
|
60 | },
|
61 | "peerDependencies": {
|
62 | "electron": ">=9.0.0 <33.0.0"
|
63 | },
|
64 | "packageManager": "yarn@1.22.22"
|
65 | }
|