-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.12 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
{
"name": "last.fm-rich-presence",
"productName": "Last.fm Rich Presence",
"version": "1.0.6",
"description": "An elegant, efficient, easy-to-setup and arguably the best Last.fm discord rich presence!",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "echo \"No linting configured\"",
"dev": "tailwindcss -o output.css --watch",
"build": "tailwindcss -o output.css --minify",
"electron-pack": "electron-builder --win -p always"
},
"build": {
"appId": "last.fm-rich-presence",
"win": {
"target": [
"nsis"
],
"icon": "src/icons/logo.ico"
},
"nsis": {
"installerIcon": "src/icons/logo.ico",
"uninstallerIcon": "src/icons/uninstall.ico",
"uninstallDisplayName": "Last.fm Rich Presence",
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"keywords": [
"Last.fm",
"Discord",
"Rich",
"Presence",
"JavaScript",
"Elegant",
"Efficient",
"Easy-to-setup"
],
"author": {
"name": "Monochromish"
},
"license": "MIT",
"config": {
"forge": {
"packagerConfig": {},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "last.fm-rich-presence"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
},
"dependencies": {
"daisyui": "^2.0.9",
"discord-rpc": "^4.0.1",
"electron-squirrel-startup": "^1.0.0",
"express": "^4.17.1",
"pretty-ms": "^7.0.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.54",
"@electron-forge/maker-deb": "^6.0.0-beta.54",
"@electron-forge/maker-rpm": "^6.0.0-beta.54",
"@electron-forge/maker-squirrel": "^6.0.0-beta.55",
"@electron-forge/maker-zip": "^6.0.0-beta.54",
"daisyui": "latest",
"electron": "12.0.7",
"tailwindcss": "latest"
}
}