-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.01 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
{
"name": "quickswitcher",
"productName": "QuickSwitcher",
"version": "1.2.0",
"description": "Minimal GPU-accelerated wallpaper quickswitcher for Hyprland, Wayland, and cross-platform desktop environments",
"main": "src/main/index.js",
"scripts": {
"start": "electron .",
"check": "node --check src/main/index.js && node --check src/main/wallpaperAdapter.js && node --check src/preload/index.js && node --check src/renderer/renderer.js && node --check scripts/generate-thumbs.js && node --check scripts/test-multi-env.js && node --check src/main/appPaths.js && node --check src/main/store.js && node --check src/main/ipcValidation.js && node --check src/main/wallpaperInventory.js && node --check src/main/mpvpaperManager.js && node --check src/main/pathPolicy.js && node --check src/main/thumbnailPolicy.js",
"test": "node --test 'test/*.test.js' --experimental-test-coverage",
"test:containers": "node scripts/test-multi-env.js",
"verify": "npm run check && npm test",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "https://github.com/ArchEnjoyerakazonix/QuickSwitcher.git"
},
"keywords": [
"hyprland",
"wayland",
"wallpaper",
"wallpaper-switcher",
"swww",
"hyprpaper",
"mpvpaper",
"desktop-customization",
"rice",
"dotfiles",
"electron",
"linux",
"quickswitcher"
],
"author": "ArchEnjoyerakazonix",
"license": "MIT",
"devDependencies": {
"electron": "^34.5.8",
"electron-builder": "^26.15.3"
},
"build": {
"appId": "com.archenjoyer.quickswitcher",
"productName": "QuickSwitcher",
"files": [
"src/**",
"assets/**",
"package.json"
],
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility"
},
"win": {
"target": [
"nsis",
"portable"
]
},
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.utilities"
}
}
}