-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.96 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
{
"name": "jkons-extension-pack",
"displayName": "jk|o|ns Extension Pack",
"publisher": "JimKnopf",
"description": "An Extension Pack for a simple setup at school",
"version": "0.2.1",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Extension Packs"
],
"extensionPack": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"streetsidesoftware.code-spell-checker",
"tabnine.tabnine-vscode",
"ritwickdey.liveserver",
"glenn2223.live-sass",
"oderwat.indent-rainbow",
"eg2.vscode-npm-script",
"davidanson.vscode-markdownlint",
"ecmel.vscode-html-css",
"pranaygp.vscode-css-peek",
"patbenatar.advanced-new-file",
"akamud.vscode-theme-onedark",
"akamud.vscode-theme-onelight",
"formulahendry.auto-rename-tag",
"Umoxfo.vscode-w3cvalidation",
"naumovs.color-highlight"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "jkonsWVSS.setupWorkspace",
"title": "Setup Workspace ( jkons )"
},
{
"command": "jkonsWVSS.selectLightTheme",
"title": "Select Light Theme ( jkons )"
},
{
"command": "jkonsWVSS.selectDarkTheme",
"title": "Select Dark Theme ( jkons )"
}
]
},
"scripts": {
"watch": "tsc -p ./",
"build": "npm version patch & vsce package",
"build-publish": "npm version patch & vsce package && vsce publish"
},
"author": {
"name": "jk|o|ns"
},
"icon": "images/wvs2_jkons_pack_logo.jpg",
"repository": {
"type": "git",
"url": "https://github.com/Jim8Knopf/jkons-wvss-extensions"
},
"dependencies": {
"ovsx": "^0.1.0",
"vsce": "^1.87.1"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.2.2"
}
}