-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.15 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
{
"name": "acorex",
"displayName": "acorex",
"description": "extention for acorex workspace",
"repository": "https://github.com/acorexui/acorex-vscode-extention.git",
"version": "2.0.0",
"icon": "assets/images/icon.png",
"publisher": "acorex",
"scripts": {
"pack": "vsce package",
"publish": "vsce publish"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Snippets",
"Extension Packs"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/html.json"
},
{
"language": "ts",
"path": "./snippets/ts.json"
}
]
},
"extensionPack": [
"dbaeumer.vscode-eslint",
"bradlc.vscode-tailwindcss",
"Thinker.font-awesome",
"nrwl.angular-console",
"formulahendry.auto-rename-tag",
"formulahendry.auto-close-tag",
"esbenp.prettier-vscode",
"Mikael.Angular-BeastCode",
"Angular.ng-template",
"PKief.material-icon-theme",
"GitHub.github-vscode-theme",
"Gruntfuggly.todo-tree",
"alfnielsen.vsc-scaffolding",
"firsttris.vscode-jest-runner"
],
"devDependencies": {
"vsce": "^2.15.0"
}
}