-
Notifications
You must be signed in to change notification settings - Fork 3
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
Ryan Watts
authored and
Ryan Watts
committed
Sep 21, 2017
1 parent
f9c115c
commit 9ed8da5
Showing
1 changed file
with
79 additions
and
79 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,81 @@ | ||
{ | ||
"name": "ide-vue", | ||
"main": "./build/main", | ||
"version": "0.1.4", | ||
"description": "Vue language support for Atom-IDE.", | ||
"repository": "rwatts3/atom-ide-vue", | ||
"license": "MIT", | ||
"engines": { | ||
"atom": ">=1.19.0" | ||
}, | ||
"configSchema": { | ||
"additionalGrammars": { | ||
"type": "array", | ||
"title": "Register Additional Grammars", | ||
"default": [], | ||
"description": "Register additional grammars" | ||
} | ||
}, | ||
"keywords": [ | ||
"atom-ide", | ||
"vue", | ||
"lsp", | ||
"language-client" | ||
], | ||
"author": { | ||
"name": "Ryan Watts", | ||
"url": "https://github.com/rwatts3", | ||
"email": "[email protected]" | ||
}, | ||
"scripts": { | ||
"prepublish": "npm run build", | ||
"dev": "tsc --watch", | ||
"build": "tsc" | ||
}, | ||
"dependencies": { | ||
"atom-languageclient": "^0.6.4", | ||
"vue-language-server": "^0.0.18" | ||
}, | ||
"devDependencies": { | ||
"@types/atom": "0.0.39", | ||
"@types/node": "^8.0.28", | ||
"typescript": "^2.5.2" | ||
}, | ||
"enhancedScopes": [ | ||
"text.html.vue" | ||
], | ||
"consumedServices": { | ||
"linter-indie": { | ||
"versions": { | ||
"2.0.0": "consumeLinterV2" | ||
} | ||
}, | ||
"datatip": { | ||
"versions": { | ||
"0.1.0": "consumeDatatip" | ||
} | ||
} | ||
}, | ||
"providedServices": { | ||
"autocomplete.provider": { | ||
"versions": { | ||
"2.0.0": "provideAutocomplete" | ||
} | ||
}, | ||
"definitions": { | ||
"versions": { | ||
"0.1.0": "provideDefinitions" | ||
} | ||
}, | ||
"find-references": { | ||
"versions": { | ||
"0.1.0": "provideFindReferences" | ||
} | ||
}, | ||
"outline-view": { | ||
"versions": { | ||
"0.1.0": "provideOutlines" | ||
} | ||
} | ||
} | ||
"name": "ide-vue", | ||
"main": "./build/main", | ||
"version": "0.1.5", | ||
"description": "Vue language support for Atom-IDE.", | ||
"repository": "rwatts3/atom-ide-vue", | ||
"license": "MIT", | ||
"engines": { | ||
"atom": ">=1.19.0" | ||
}, | ||
"configSchema": { | ||
"additionalGrammars": { | ||
"type": "array", | ||
"title": "Register Additional Grammars", | ||
"default": [], | ||
"description": "Register additional grammars" | ||
} | ||
}, | ||
"keywords": [ | ||
"atom-ide", | ||
"vue", | ||
"lsp", | ||
"language-client" | ||
], | ||
"author": { | ||
"name": "Ryan Watts", | ||
"url": "https://github.com/rwatts3", | ||
"email": "[email protected]" | ||
}, | ||
"scripts": { | ||
"prepublish": "npm run build", | ||
"dev": "tsc --watch", | ||
"build": "tsc" | ||
}, | ||
"dependencies": { | ||
"atom-languageclient": "^0.6.4", | ||
"vue-language-server": "^0.0.18" | ||
}, | ||
"devDependencies": { | ||
"@types/atom": "0.0.39", | ||
"@types/node": "^8.0.28", | ||
"typescript": "^2.5.2" | ||
}, | ||
"enhancedScopes": [ | ||
"text.html.vue" | ||
], | ||
"consumedServices": { | ||
"linter-indie": { | ||
"versions": { | ||
"2.0.0": "consumeLinterV2" | ||
} | ||
}, | ||
"datatip": { | ||
"versions": { | ||
"0.1.0": "consumeDatatip" | ||
} | ||
} | ||
}, | ||
"providedServices": { | ||
"autocomplete.provider": { | ||
"versions": { | ||
"2.0.0": "provideAutocomplete" | ||
} | ||
}, | ||
"definitions": { | ||
"versions": { | ||
"0.1.0": "provideDefinitions" | ||
} | ||
}, | ||
"find-references": { | ||
"versions": { | ||
"0.1.0": "provideFindReferences" | ||
} | ||
}, | ||
"outline-view": { | ||
"versions": { | ||
"0.1.0": "provideOutlines" | ||
} | ||
} | ||
} | ||
} |