-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.65 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.65 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
98
99
100
101
102
103
104
{
"name": "symbols",
"displayName": "Symbols",
"description": "A simple file icon theme for VS Code",
"version": "0.0.25",
"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/miguelsolorio/vscode-symbols.git"
},
"bugs": {
"url": "https://github.com/miguelsolorio/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.defaultAssociations": {
"type": "boolean",
"default": true,
"description": "Allows you to use the default icons for files and folders or disable them and specify your own via symbols.files.associations and symbols.folders.associations."
},
"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."
}
}
}
},
"type": "commonjs",
"scripts": {
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check-format": "biome check .",
"check-format:fix": "biome check --write .",
"integrity": "node --experimental-json-modules scripts/integrity.mjs",
"package": "vsce package",
"vscode:prepublish": "npm run check-format && npm run lint",
"precommit": "npm run check-format:fix && npm run lint:fix && npm run integrity && npm run generate-previews",
"prepare": "husky",
"generate-previews": "node --experimental-json-modules scripts/generate-previews.mjs && node --experimental-json-modules scripts/generate-markdown.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.3.3",
"@types/vscode": "^1.88.0",
"@vscode/vsce": "^3.2.1",
"markdown-table": "^3.0.4",
"sharp": "^0.34.4",
"husky": "^9.0.0"
}
}