Skip to content

Commit

Permalink
New version, 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cmstead committed Aug 18, 2021
1 parent f810c43 commit bbe4493
Showing 1 changed file with 79 additions and 79 deletions.
158 changes: 79 additions & 79 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,80 +1,80 @@
{
"name": "snipkit",
"displayName": "SnipKit",
"description": "Enhanced snippet creation and editing for VS Code",
"version": "0.0.1",
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Formatters",
"Other"
],
"main": "./extension.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha ./test/**/*.test.js && gittey commit"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.46.0",
"approvals": "^4.0.0-beta.1",
"chai": "^4.3.4",
"eslint": "^7.15.0",
"glob": "^7.1.6",
"mocha": "^8.4.0",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1"
},
"public": true,
"activationEvents": [
"onCommand:cmstead.snipkit.indent",
"onCommand:cmstead.snipkit.outdent"
],
"contributes": {
"commands": [
{
"command": "cmstead.snipkit.indent",
"title": "SnipKit: Indent Lines",
"description": "Indent selected body lines"
},
{
"command": "cmstead.snipkit.outdent",
"title": "SnipKit: Outdent Lines",
"description": "Outdent selected body lines"
}
],
"keybindings": [
{
"command": "cmstead.snipkit.indent",
"key": "ctrl+alt+]",
"mac": "cmd+alt+]",
"when": "editorHasSelection"
},
{
"command": "cmstead.snipkit.outdent",
"key": "ctrl+alt+[",
"mac": "cmd+alt+[",
"when": "editorHasSelection"
}
],
"snippets": [
{
"language": "json",
"path": "./snippets.json"
},
{
"language": "jsonc",
"path": "./snippets.json"
}
]
},
"dependencies": {
"json-ast": "^2.1.7"
}
}
"name": "snipkit",
"displayName": "SnipKit",
"description": "Enhanced snippet creation and editing for VS Code",
"version": "0.1.0",
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Formatters",
"Other"
],
"main": "./extension.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha ./test/**/*.test.js && gittey commit"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.46.0",
"approvals": "^4.0.0-beta.1",
"chai": "^4.3.4",
"eslint": "^7.15.0",
"glob": "^7.1.6",
"mocha": "^8.4.0",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1"
},
"public": true,
"activationEvents": [
"onCommand:cmstead.snipkit.indent",
"onCommand:cmstead.snipkit.outdent"
],
"contributes": {
"commands": [
{
"command": "cmstead.snipkit.indent",
"title": "SnipKit: Indent Lines",
"description": "Indent selected body lines"
},
{
"command": "cmstead.snipkit.outdent",
"title": "SnipKit: Outdent Lines",
"description": "Outdent selected body lines"
}
],
"keybindings": [
{
"command": "cmstead.snipkit.indent",
"key": "ctrl+alt+]",
"mac": "cmd+alt+]",
"when": "editorHasSelection"
},
{
"command": "cmstead.snipkit.outdent",
"key": "ctrl+alt+[",
"mac": "cmd+alt+[",
"when": "editorHasSelection"
}
],
"snippets": [
{
"language": "json",
"path": "./snippets.json"
},
{
"language": "jsonc",
"path": "./snippets.json"
}
]
},
"dependencies": {
"json-ast": "^2.1.7"
}
}

0 comments on commit bbe4493

Please sign in to comment.