forked from max-mapper/menubar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.98 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.98 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@gitify/menubar",
"version": "10.0.0",
"description": "high level way to create menubar desktop applications with electron",
"keywords": [
"app",
"electron",
"linux",
"mac",
"menu",
"menubar",
"shell",
"taskbar",
"tray",
"traybar",
"windows"
],
"homepage": "https://github.com/gitify-app/menubar",
"bugs": {
"url": "https://github.com/gitify-app/menubar/issues"
},
"license": "BSD-2-Clause",
"author": "Gitify",
"contributors": [
"Afonso Jorge Ramos (https://github.com/afonsojramos)",
"Adam Setch (https://github.com/setchy)"
],
"repository": {
"type": "git",
"url": "https://github.com/gitify-app/menubar.git"
},
"files": [
"/assets",
"/lib"
],
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"types": "lib/index.d.cts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
}
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"deploy": "bun run build && standard-version",
"lint:check": "vp check",
"lint": "vp check --fix",
"test": "vp test",
"test:e2e": "playwright test --config tests/e2e/playwright.config.ts",
"test:visual": "bun run tests/visual/run.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/pngjs": "^6.0.5",
"@voidzero-dev/vite-plus-core": "latest",
"@voidzero-dev/vite-plus-test": "latest",
"electron": "^39.0.0",
"pngjs": "^7.0.0",
"standard-version": "^9.5.0",
"typescript": "^5.9.3",
"vite-plus": "latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"peerDependencies": {
"electron": ">=9.0.0 <40.0.0"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest"
},
"packageManager": "bun@1.3.11"
}