-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.26 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.26 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
105
106
107
108
109
110
111
112
{
"name": "framework-icons",
"displayName": "Framework Icons",
"description": "Automatic folder icon theming based on detected framework",
"version": "0.1.0",
"publisher": "martinez-sebastian",
"author": {
"name": "Daniel Martinez Sebastian",
"url": "https://github.com/DanielMartinezSebastian"
},
"repository": {
"type": "git",
"url": "https://github.com/DanielMartinezSebastian/framework-icons-vscode-extension.git"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Themes",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"iconThemes": [
{
"id": "framework-icons-react",
"label": "Framework Icons - React",
"path": "./fileicons/react-icon-theme.json"
},
{
"id": "framework-icons-angular",
"label": "Framework Icons - Angular",
"path": "./fileicons/angular-icon-theme.json"
},
{
"id": "framework-icons-vue",
"label": "Framework Icons - Vue",
"path": "./fileicons/vue-icon-theme.json"
},
{
"id": "framework-icons-default",
"label": "Framework Icons - Default",
"path": "./fileicons/default-icon-theme.json"
}
],
"configuration": {
"title": "Framework Icons",
"properties": {
"frameworkIcons.enabled": {
"type": "boolean",
"default": true,
"description": "Enable/disable automatic framework icon theming"
},
"frameworkIcons.detectFramework": {
"type": "boolean",
"default": true,
"description": "Automatically detect framework or use manual setting"
},
"frameworkIcons.manualFramework": {
"type": "string",
"enum": [
"auto",
"react",
"angular",
"vue"
],
"default": "auto",
"description": "Manually set the framework (only used if detectFramework is false)"
},
"frameworkIcons.customFolderColors": {
"type": "object",
"default": {},
"description": "Custom folder colors overrides (e.g. {\"components\": \"#FF0000\"})"
}
}
},
"commands": [
{
"command": "frameworkIcons.detectFramework",
"title": "Framework Icons: Detect Framework"
},
{
"command": "frameworkIcons.cycleFramework",
"title": "Framework Icons: Cycle Framework"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"generate-icons": "node ./scripts/generate-icons.js",
"check-themes": "node ./scripts/check-theme.js",
"verify-build": "node ./scripts/verify-build.js",
"prepackage": "npm run generate-icons && npm run compile && npm run verify-build && npm run check-themes",
"package": "vsce package --no-dependencies",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.13.0",
"typescript": "^4.7.4",
"vsce": "^2.15.0"
}
}