-
Notifications
You must be signed in to change notification settings - Fork 365
/
package.json
65 lines (65 loc) · 1.42 KB
/
package.json
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
58
59
60
61
62
63
64
65
{
"name": "menubar",
"version": "9.5.1",
"author": "Max Ogden",
"bugs": {
"url": "https://github.com/maxogden/menubar/issues"
},
"description": "high level way to create menubar desktop applications with electron",
"files": [
"/assets",
"/lib"
],
"homepage": "https://github.com/maxogden/menubar",
"keywords": [
"electron",
"shell",
"menubar",
"menu",
"taskbar",
"tray",
"traybar",
"mac",
"linux",
"windows",
"app"
],
"license": "BSD-2-Clause",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/maxogden/menubar.git"
},
"scripts": {
"build": "rimraf lib/ && tsc",
"deploy": "yarn build && standard-version",
"docs": "typedoc",
"lint:check": "biome check",
"lint": "biome check --fix",
"test": "jest"
},
"types": "lib/index.d.ts",
"dependencies": {
"electron-positioner": "^4.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/jest": "^25.2.3",
"electron": "^32.2.0",
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"standard-version": "^8.0.0",
"ts-jest": "^26.0.0",
"typedoc": "^0.17.7",
"typedoc-plugin-markdown": "^2.2.17",
"typedoc-plugin-no-inherit": "^1.1.10",
"typescript": "^4.6.2"
},
"peerDependencies": {
"electron": ">=9.0.0 <33.0.0"
},
"packageManager": "[email protected]"
}