-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
178 lines (178 loc) · 4.8 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "code-banner",
"description": "Upgrade your project in VSCode and make it pop!",
"version": "0.4.9",
"publisher": "EliSklar",
"enableProposedApi": false,
"displayName": "Code Banner",
"icon": "media/assets/code-banner.png",
"license": "MIT",
"engines": {
"vscode": "^1.57.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*",
"onView:code-banner-sidebar",
"onCommand:code-banner.generateBasicCBFile",
"onCommand:code-banner.generateAdvancedCBFIle",
"onCommand:code-banner.showReadMe"
],
"author": {
"email": "[email protected]",
"name": "Eli Sklar"
},
"repository": {
"type": "git",
"url": "https://github.com/elis/code-banner.git"
},
"main": "./out/server/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "code-banner-sidebar-view",
"title": "Code Banner",
"icon": "media/bookmark.svg"
}
],
"codebanner": [
{
"id": "code-banner",
"title": "Code Banner",
"icon": "media/assets/icon.svg"
}
]
},
"inactiveViews": {
"code-banner-sidebar-view": [
{
"type": "webview",
"id": "code-banner-sidebar",
"name": "code-banner",
"icon": "media/bookmark.svg",
"contextualTitle": "code-banner"
}
]
},
"views": {
"explorer": [
{
"type": "webview",
"id": "codeBanner.explorerPanel",
"name": "Code Banner",
"icon": "media/assets/icon.svg"
}
],
"debug": [
{
"type": "webview",
"id": "codeBanner.debugPanel",
"name": "Code Banner",
"icon": "media/assets/icon.svg"
}
],
"scm": [
{
"type": "webview",
"id": "codeBanner.scmPanel",
"name": "Code Banner",
"icon": "media/assets/icon.svg"
}
]
},
"configuration": {
"title": "Code Banner",
"properties": {
"codeBanner.allowExecutableConfiguration": {
"type": "boolean",
"default": false,
"markdownDescription": "Allow extensionn to load `?.pb` files and execute them as javascript"
}
}
},
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "Executable configurations are disabled",
"restrictedConfigurations": [
"codeBanner.aallowExecutableConfiguration"
]
}
},
"commands": [
{
"command": "code-banner.generateBasicCBFile",
"category": "Code Banner",
"title": "Generate Basic Code Banner"
},
{
"command": "code-banner.generateAdvancedCBFIle",
"category": "Code Banner",
"title": "Generate Advanced Code Banner"
},
{
"command": "code-banner.showReadMe",
"category": "Code Banner",
"title": "View Read Me"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile:server": "tsc -p ./",
"compile:client": "node build.js",
"compile": "npm run compile:server && npm run compile:client",
"lint": "eslint . --ext .ts,.tsx",
"watch": "npm run compile:client && tsc -w -p ./",
"watch:both": "concurrently -n Server,Client npm:watch:server npm:watch:client",
"watch:server": "tsc -w -p ./",
"watch:client": "node build.js --watch",
"changelog": "eplog exec scripts/changelog.js > CHANGELOG.md",
"changelog:watch": "nodemon --watch scripts/changelog.js --exec \"npm run changelog\""
},
"dependencies": {
"@vscode/codicons": "^0.0.26",
"ahooks": "^3.7.1",
"axios": "^0.27.2",
"class-names": "^1.0.0",
"concurrently": "^6.3.0",
"deep-object-diff": "^1.1.0",
"esbuild-sass-plugin": "^1.7.0",
"imurmurhash": "^0.1.4",
"minimatch": "^3.0.4",
"object-hash": "^2.2.0",
"object-path": "^0.11.8",
"path": "^0.12.7",
"postcss-import": "^14.0.2",
"postcss-scss": "^4.0.2",
"react-markdown": "^7.1.0",
"react-string-replace": "^0.4.4",
"styled-components": "^5.3.3",
"tailwindcss": "^2.2.19",
"yaml": "^1.10.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@types/minimatch": "^3.0.5",
"@types/node": "^16.11.6",
"@types/object-hash": "^2.2.1",
"@types/object-path": "^0.11.1",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"eplog": "^1.4.3",
"esbuild": "^0.13.12",
"esbuild-postcss": "^0.0.4",
"eslint": "^7.21.0",
"postcss": "^8.3.11",
"prettier": "2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.2.2"
}
}