aboutsummaryrefslogtreecommitdiff
path: root/ext/package.json
diff options
context:
space:
mode:
authorCody <cody@codyq.dev>2023-03-30 02:44:54 -0500
committerCody <cody@codyq.dev>2023-03-30 02:44:54 -0500
commit2970520a9592b5c6d45291f54073552a474b71b4 (patch)
treef42ecc1be0989367cf7c70d0b7909bac0b86904e /ext/package.json
parentbb95375f8b24141bf7dfe5a8b1bba5c995f61253 (diff)
downloadsloth-2970520a9592b5c6d45291f54073552a474b71b4.tar.gz
Restructure
Diffstat (limited to 'ext/package.json')
-rw-r--r--ext/package.json39
1 files changed, 0 insertions, 39 deletions
diff --git a/ext/package.json b/ext/package.json
deleted file mode 100644
index 5a14b4f..0000000
--- a/ext/package.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "name": "sloth-lang",
- "displayName": "Sloth Lang",
- "description": "Language support for Sloth",
- "version": "0.0.1",
- "engines": {
- "vscode": "^1.22.0"
- },
- "categories": [
- "Programming Languages"
- ],
- "contributes": {
- "languages": [
- {
- "id": "sloth",
- "aliases": [
- "sloth"
- ],
- "extensions": [
- ".sloth"
- ],
- "configuration": "./language-configuration.json"
- }
- ],
- "grammars": [
- {
- "language": "sloth",
- "scopeName": "source.sloth",
- "path": "./syntaxes/sloth.tmLanguage.json"
- }
- ]
- },
- "devDependencies": {
- "vsce": "^2.15.0"
- },
- "scripts": {
- "package": "vsce package"
- }
-}