-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.51 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
{
"name": "playlist-manager",
"version": "2.5.0",
"type": "module",
"description": "local playlist manager",
"main": "dist/main.mjs",
"scripts": {
"typecheck": "tsc --noEmit --skipLibCheck",
"build:ts": "node scripts/esbuild.mjs production",
"dev": "node scripts/esbuild.mjs dev",
"dev:build": "node scripts/esbuild.mjs watch",
"dev:electron": "cross-env NODE_OPTIONS=--experimental-sqlite electron .",
"dev:typecheck": "tsc --noEmit --skipLibCheck --watch",
"start": "pnpm run build:ts && cross-env NODE_OPTIONS=--experimental-sqlite electron .",
"dist": "pnpm run build:ts && electron-builder --publish never",
"dist:rpm": "pnpm run build:ts && electron-builder --linux rpm --publish never",
"dist:deb": "pnpm run build:ts && electron-builder --linux deb --publish never",
"dist:dir": "pnpm run build:ts && electron-builder --dir"
},
"repository": "https://github.com/KraXen72/playlist-manager",
"author": {
"name": "KraXen72",
"email": "dpelech1@gmail.com"
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"@electron/remote": "^2.1.2",
"@material-icons/font": "^1.0.36",
"@trevoreyre/autocomplete-js": "^3.0.3",
"fs-walk": "^0.0.2",
"graceful-fs": "^4.2.11",
"music-metadata": "^11.12.1",
"smooth-dnd": "^0.12.1"
},
"devDependencies": {
"@types/node": "^24.7.2",
"chokidar": "^4.0.3",
"cross-env": "^10.1.0",
"electron": "^41.0.0",
"electron-builder": "^25.0.0",
"esbuild": "^0.25.11",
"typescript": "^5.9.3"
},
"build": {
"appId": "com.kraxen72.playlist-manager",
"productName": "playlist-manager",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"**/*",
"!covers/**",
"!screenshots/**",
"!.github/**",
"!*.md",
"!pnpm-lock.yaml",
"!pnpm-workspace.yaml",
"!.repomixignore"
],
"linux": {
"icon": "playlist-manager.png",
"target": [
{
"target": "tar.gz",
"arch": [
"x64"
]
}
]
},
"win": {
"icon": "build/icon.png",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"mac": {
"icon": "build/icon.png",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
]
}
}
}