Skip to content
This repository has been archived by the owner on Sep 26, 2020. It is now read-only.

Commit

Permalink
Bumped version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
kofno committed Oct 24, 2016
1 parent 9a457fb commit e50055b
Showing 1 changed file with 95 additions and 89 deletions.
184 changes: 95 additions & 89 deletions client/package.json
@@ -1,89 +1,95 @@
{
"name": "crystal-ide",
"displayName": "Crystal IDE",
"description": "Syntax and error checking",
"author": "Ryan L. Bell",
"publisher": "kofno",
"license": "MIT",
"version": "0.0.3",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/kofno/crystal-ide"
},
"engines": {
"vscode": "^0.10.10"
},
"categories": [
"Linters",
"Languages"
],
"activationEvents": [
"onLanguage:crystal"
],
"main": "./out/src/extension",
"contributes": {
"languages": [{
"id": "crystal",
"extensions": [
".cr"
],
"aliases": [
"Crystal"
],
"configuration": "./crystal-ide.configuration.json"
}],
"grammars": [{
"language": "crystal",
"scopeName": "source.crystal",
"path": "./syntaxes/Crystal.tmLanguage"
}],
"configuration": {
"type": "object",
"title": "Crystal IDE",
"properties": {
"crystal-ide.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"crystal-ide.backend": {
"type": "string",
"default": "default",
"description": "Controls which language backend to use: scry, custom, or default"
},
"crystal-ide.customCommand": {
"type": "string",
"default": "crystal",
"description": "For a custom backend, the command to execute when launching the server"
},
"crystal-ide.customCommandArgs": {
"type": "array",
"items": {
"type": "string"
},
"default": ["run", "src/scry"],
"description": "For a custom backend, the arguments passed to the command"
},
"crystal-ide.logLevel": {
"type": "string",
"default": "info",
"description": "How much logging is done by the backend: debug, info, warn, error, fatal"
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"

},
"devDependencies": {
"typescript": "^1.8.9",
"vscode": "^0.11.0"
},
"dependencies": {
"vscode-languageclient": "^2.2.1"
}
}
{
"name": "crystal-ide",
"displayName": "Crystal IDE",
"description": "Syntax and error checking",
"author": "Ryan L. Bell",
"publisher": "kofno",
"license": "MIT",
"version": "0.0.4",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/kofno/crystal-ide"
},
"engines": {
"vscode": "^0.10.10"
},
"categories": [
"Linters",
"Languages"
],
"activationEvents": [
"onLanguage:crystal"
],
"main": "./out/src/extension",
"contributes": {
"languages": [
{
"id": "crystal",
"extensions": [
".cr"
],
"aliases": [
"Crystal"
],
"configuration": "./crystal-ide.configuration.json"
}
],
"grammars": [
{
"language": "crystal",
"scopeName": "source.crystal",
"path": "./syntaxes/Crystal.tmLanguage"
}
],
"configuration": {
"type": "object",
"title": "Crystal IDE",
"properties": {
"crystal-ide.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"crystal-ide.backend": {
"type": "string",
"default": "default",
"description": "Controls which language backend to use: scry, custom, or default"
},
"crystal-ide.customCommand": {
"type": "string",
"default": "crystal",
"description": "For a custom backend, the command to execute when launching the server"
},
"crystal-ide.customCommandArgs": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"run",
"src/scry"
],
"description": "For a custom backend, the arguments passed to the command"
},
"crystal-ide.logLevel": {
"type": "string",
"default": "info",
"description": "How much logging is done by the backend: debug, info, warn, error, fatal"
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.9",
"vscode": "^0.11.0"
},
"dependencies": {
"vscode-languageclient": "^2.2.1"
}
}

0 comments on commit e50055b

Please sign in to comment.