This repository has been archived by the owner on Jul 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
executable file
·154 lines (154 loc) · 4.62 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
{
"name": "vscode-profile-switcher",
"displayName": "Profile Switcher",
"description": "Allows you to switch between different profiles you have created",
"version": "0.3.3",
"preview": true,
"license": "SEE LICENSE IN LICENSE.md",
"publisher": "aaronpowell",
"homepage": "https://github.com/aaronpowell/vscode-profile-switcher/blob/master/README.md",
"icon": "images/logo.png",
"galleryBanner": {
"color": "#373436",
"theme": "dark"
},
"extensionKind": "ui",
"repository": {
"type": "git",
"url": "https://github.com/aaronpowell/vscode-profile-switcher.git"
},
"bugs": {
"url": "https://github.com/aaronpowell/vscode-profile-switcher/issues"
},
"engines": {
"vscode": "^1.35.0"
},
"author": {
"name": "Aaron Powell",
"url": "https://www.aaron-powell.com"
},
"categories": [
"Themes",
"Other"
],
"keywords": [
"presenter",
"vscode-settings",
"code-settings",
"profile",
"settings"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.selectProfile",
"title": "Profile Switcher: Select Profile"
},
{
"command": "extension.selectLiveShareProfile",
"title": "Profile Switcher: Select Live Share Profile"
},
{
"command": "extension.saveProfile",
"title": "Profile Switcher: Save Profile"
},
{
"command": "extension.deleteProfile",
"title": "Profile Switcher: Delete Profile"
}
],
"configuration": {
"title": "Settings for the Profile Switcher",
"properties": {
"profileSwitcher.profiles": {
"type": "array",
"default": [],
"description": "The names of the profiles that have been saved"
},
"profileSwitcher.storage": {
"type": "object",
"description": "These are the settings for each profile that has been saved. Probably don't hand-edit this",
"patternProperties": {
".*": {
"type": "object"
}
}
},
"profileSwitcher.liveShareProfile": {
"type": "string",
"description": "Specifies the profile you'd like to use when you start a Live Share session. Defaults to using the current profile",
"default": null
},
"profileSwitcher.extensions": {
"type": "object",
"description": "These are the extensions for each profile that has been saved. Probably don't hand-edit this",
"patternProperties": {
".*": {
"type": "array"
}
}
},
"profileSwitcher.extensionsIgnore": {
"type": "array",
"description": "Extensions that will not be removed when profiles are switches. Enter the profile ID like 'ms-vsliveshare.vsliveshare'.",
"default": [
"shan.code-settings-sync",
"ms-vsliveshare.vsliveshare",
"ms-vsliveshare.vsliveshare-audio",
"ms-vsliveshare.vsliveshare-pack"
]
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "cross-env CODE_TESTS_DATA_DIR=./.test-profiles/tests/data node ./out/test/runTest.js",
"test-coverage": "node ./out/test/runTest.js --coverage",
"package": "npx vsce package",
"publish": "npx vsce publish",
"lint": "eslint ./src --ext .js,.ts",
"lint-fix": "eslint ./src --ext .js,.ts --fix"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/fs-extra": "^9.0.4",
"@types/glob": "^7.1.3",
"@types/istanbul-lib-instrument": "^1.7.4",
"@types/istanbul-lib-report": "^1.1.1",
"@types/istanbul-lib-source-maps": "^1.2.2",
"@types/istanbul-reports": "^1.1.2",
"@types/mocha": "^7.0.2",
"@types/node": "^14.14.9",
"@types/vscode": "^1.51.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"glob": "^7.1.6",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-instrument": "^3.3.0",
"istanbul-lib-report": "^2.0.8",
"istanbul-lib-source-maps": "^3.0.6",
"istanbul-reports": "^3.0.2",
"mocha": "^7.2.0",
"mocha-multi-reporters": "^1.5.1",
"prettier": "^2.2.0",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1"
},
"dependencies": {
"fs-extra": "^9.0.1",
"jsonc-parser": "^3.0.0",
"vsls": "^1.0.3015"
}
}