forked from miguelsolorio/vscode-symbols
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.17 KB
/
package.json
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
{
"name": "catppuccin-noctis-icons",
"displayName": "Catppuccin Noctis Icons",
"description": "A companion icons theme for Catppuccin Noctis color theme. Forked from Symbols Icon Theme",
"version": "0.3.0",
"publisher": "alexdauenhauer",
"icon": "logo.png",
"main": "./src/extension.js",
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Themes"
],
"extensionKind": [
"ui",
"workspace"
],
"keywords": [
"icons",
"theme",
"icon-theme",
"file-icon-theme",
"file icons"
],
"repository": {
"type": "git",
"url": "https://github.com/alexdauenhauer/catppuccin-noctis-icons.git"
},
"author": {
"name": "Alex Dauenhauer"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"iconThemes": [
{
"id": "catppuccin noctis icons",
"label": "Catppuccin Noctis Icons",
"path": "./src/catppuccin-noctis-icon-theme.modified.json",
"_watch": true
}
],
"configuration": {
"type": "object",
"title": "Catppuccin Noctis Icons",
"properties": {
"catppuccin-noctis-icons.hidesExplorerArrows": {
"type": "boolean",
"default": false,
"description": "Hide arrow icons in the explorer section."
},
"catppuccin-noctis-icons.folders.associations": {
"type": "object",
"default": {},
"description": "With this configuration can customize the folder icons."
},
"catppuccin-noctis-icons.files.associations": {
"type": "object",
"default": {},
"description": "With this configuration can customize the files icons."
}
}
}
},
"scripts": {
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --apply .",
"check-format": "biome check .",
"check-format:fix": "biome check --apply .",
"precommit": "npm run check-format && npm run lint",
"release": "release-it"
},
"devDependencies": {
"@biomejs/biome": "1.7.2",
"@types/vscode": "^1.88.0",
"release-it": "^17.2.1"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true
}
}
}