forked from miguelsolorio/vscode-symbols
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.04 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
{
"name": "symbols",
"displayName": "Symbols",
"description": "A simple file icon theme for VS Code",
"version": "0.0.18",
"publisher": "miguelsolorio",
"icon": "symbols.png",
"preview": true,
"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/misolori/vscode-symbols.git"
},
"bugs": {
"url": "https://github.com/misolori/vscode-symbols/issues"
},
"author": {
"name": "Miguel Solorio"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"activationEvents": ["onStartupFinished"],
"contributes": {
"iconThemes": [
{
"id": "symbols",
"label": "Symbol Icons",
"path": "./src/symbol-icon-theme.modified.json",
"_watch": true
}
],
"configuration": {
"type": "object",
"title": "Symbols",
"properties": {
"symbols.hidesExplorerArrows": {
"type": "boolean",
"default": false,
"description": "Hide arrow icons in the explorer section."
},
"symbols.folders.associations": {
"type": "object",
"default": {},
"description": "With this configuration can customize the folder icons."
},
"symbols.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
}
}
}