This repository was archived by the owner on Jan 1, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.52 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.52 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "floatplane",
"version": "1.4.11",
"description": "A wallpaper manager app for macOS.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"pack": "npm run build && electron-builder --mac",
"dist": "npm run build && electron-builder --mac --publish=never",
"clean": "rm -rf dist node_modules package-lock.json && npm install"
},
"keywords": [
"wallpaper",
"macOS",
"desktop"
],
"author": "andrinoff",
"license": "MIT",
"dependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.3",
"lucide-react": "^0.562.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.0.0",
"electron": "^39.0.0",
"electron-builder": "^26.0.0",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^4.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^6.0.0"
},
"build": {
"appId": "com.andrinoff.floatpane",
"productName": "floatpane",
"directories": {
"output": "dist-electron"
},
"compression": "maximum",
"mac": {
"target": {
"target": "dmg",
"arch": [
"arm64",
"x64"
]
},
"identity": null,
"artifactName": "${productName}-${version}-${arch}.${ext}",
"icon": "icon.icns",
"category": "public.app-category.utilities"
},
"dmg": {
"window": {
"width": 540,
"height": 380
},
"contents": [
{
"x": 130,
"y": 186,
"type": "file"
},
{
"x": 410,
"y": 186,
"type": "link",
"path": "/Applications"
}
]
},
"files": [
"dist/**/*",
"main.js",
"preload.js",
"package.json",
"!**/node_modules/**/*",
"!src/**/*",
"!webpack.config.js",
"!*.md"
],
"asar": true,
"asarUnpack": []
},
"files": [
"dist/**/*",
"main.js",
"preload.js",
"package.json",
"!**/node_modules/**/*",
"!src/**/*",
"!webpack.config.js",
"!*.md"
],
"asar": true,
"asarUnpack": []
}