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
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2fc0042
commit 2fc8eef
Showing
3 changed files
with
120 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,105 +1,105 @@ | ||
{ | ||
"name": "vscode-profile-switcher", | ||
"displayName": "Profile Switcher", | ||
"description": "Allows you to switch between different profiles you have created", | ||
"version": "0.1.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" | ||
"name": "vscode-profile-switcher", | ||
"displayName": "Profile Switcher", | ||
"description": "Allows you to switch between different profiles you have created", | ||
"version": "0.2.0", | ||
"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.saveProfile", | ||
"title": "Profile Switcher: Save Profile" | ||
}, | ||
{ | ||
"command": "extension.deleteProfile", | ||
"title": "Profile Switcher: Delete Profile" | ||
} | ||
], | ||
"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.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 details for each profile that has been saved. Probably don't hand-edit this", | ||
"patternProperties": { | ||
".*": { | ||
"type": "object" | ||
} | ||
} | ||
} | ||
"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 details for each profile that has been saved. Probably don't hand-edit this", | ||
"patternProperties": { | ||
".*": { | ||
"type": "object" | ||
} | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"vscode:prepublish": "npm run compile", | ||
"compile": "tsc -p ./", | ||
"watch": "tsc -watch -p ./", | ||
"postinstall": "node ./node_modules/vscode/bin/install", | ||
"test": "npm run compile && node ./node_modules/vscode/bin/test", | ||
"test:ci": "node ./node_modules/vscode/bin/test", | ||
"package": "npx vsce package", | ||
"publish": "npx vsce publish", | ||
"lint": "tslint --project tsconfig.json -e src/*.d.ts -t verbose" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^4.1.7", | ||
"@types/fs-extra": "^7.0.0", | ||
"@types/mocha": "^2.2.42", | ||
"@types/node": "^11.13.0", | ||
"chai": "^4.2.0", | ||
"mocha-multi-reporters": "^1.1.7", | ||
"tslint": "^5.12.1", | ||
"typescript": "^3.3.1", | ||
"vscode": "^1.1.28" | ||
}, | ||
"dependencies": { | ||
"fs-extra": "^8.0.1" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"vscode:prepublish": "npm run compile", | ||
"compile": "tsc -p ./", | ||
"watch": "tsc -watch -p ./", | ||
"postinstall": "node ./node_modules/vscode/bin/install", | ||
"test": "npm run compile && node ./node_modules/vscode/bin/test", | ||
"test:ci": "node ./node_modules/vscode/bin/test", | ||
"package": "npx vsce package", | ||
"publish": "npx vsce publish", | ||
"lint": "tslint --project tsconfig.json -e src/*.d.ts -t verbose" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^4.1.7", | ||
"@types/fs-extra": "^7.0.0", | ||
"@types/mocha": "^2.2.42", | ||
"@types/node": "^11.13.0", | ||
"chai": "^4.2.0", | ||
"mocha-multi-reporters": "^1.1.7", | ||
"tslint": "^5.12.1", | ||
"typescript": "^3.3.1", | ||
"vscode": "^1.1.28" | ||
}, | ||
"dependencies": { | ||
"fs-extra": "^8.0.1" | ||
} | ||
} |