Skip to content

Commit ead947f

Browse files
committed
🐛 fix: fixed npm packages schema
1 parent bfce6f5 commit ead947f

File tree

2 files changed

+32
-7
lines changed

2 files changed

+32
-7
lines changed

appList.json

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@
1010
"GitHub.GitHubDesktop",
1111
"ImageMagick.ImageMagick",
1212
"JanDeDobbeleer.OhMyPosh",
13-
// "Obsidian.Obsidian",
13+
"Obsidian.Obsidian",
1414
// "Microsoft.OpenJDK.21",
1515
"Docker.DockerDesktop",
16+
"Discord.Discord",
1617
"Microsoft.PowerShell",
1718
"Microsoft.PowerToys",
1819
"Microsoft.VisualStudioCode",
@@ -28,9 +29,9 @@
2829
"Flow-Launcher.Flow-Launcher",
2930
"LGUG2Z.komorebi",
3031
"LGUG2Z.whkd",
31-
"Rainmeter.Rainmeter"
32-
// "rocksdanister.LivelyWallpaper",
33-
// "Stardock.Start11"
32+
"Rainmeter.Rainmeter",
33+
"rocksdanister.LivelyWallpaper",
34+
"Stardock.Start11"
3435
],
3536
"scoop": {
3637
"bucket": ["extras", "java", "sysinternals"],
@@ -93,7 +94,20 @@
9394
// "PSWebSearch",
9495
"Terminal-Icons"
9596
],
96-
"npm": ["commitizen", "cz-git", "git-open", "git-recent"],
97+
"npm": [
98+
{
99+
"Command": "git-cz",
100+
"Packages": ["commitizen", "cz-git"]
101+
},
102+
{
103+
"Command": "git-open",
104+
"Packages": ["git-open"]
105+
},
106+
{
107+
"Command": "git-recent",
108+
"Packages": ["git-recent"]
109+
}
110+
],
97111
"nerdfont": [
98112
{
99113
"DisplayName": "FantasqueSansMono Nerd Font",

schema.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,19 @@
6565
"npm": {
6666
"type": "array",
6767
"items": {
68-
"description": "NPM Global Packages",
69-
"type": "string"
68+
"anyOf": [
69+
{
70+
"type": "object",
71+
"properties": {
72+
"Command": {
73+
"type": "string"
74+
},
75+
"Packages": {
76+
"type": "array"
77+
}
78+
}
79+
}
80+
]
7081
}
7182
},
7283
"nerdfont": {

0 commit comments

Comments
 (0)