11{
2- "name" : " vscode-syntax-tree" ,
3- "displayName" : " Syntax Tree" ,
4- "description" : " VSCode support for the syntax_tree gem" ,
5- "icon" : " doc/logo.png" ,
6- "version" : " 0.2.1" ,
7- "publisher" : " ruby-syntax-tree" ,
8- "repository" : {
9- "type" : " git" ,
10- "url" : " https://github.com/ruby-syntax-tree/vscode-syntax-tree.git"
11- },
12- "license" : " MIT" ,
13- "bugs" : {
14- "url" : " https://github.com/ruby-syntax-tree/vscode-syntax-tree/issues"
15- },
16- "packageManager" : " yarn@1.22.19" ,
17- "engines" : {
18- "vscode" : " ^1.66.0"
19- },
20- "activationEvents" : [
21- " onLanguage:ruby" ,
22- " workspaceContains:Gemfile.lock" ,
23- " onCommand:syntaxTree.start" ,
24- " onCommand:syntaxTree.stop" ,
25- " onCommand:syntaxTree.restart" ,
26- " onCommand:syntaxTree.showOutputChannel" ,
27- " onCommand:syntaxTree.visualize"
28- ],
29- "main" : " ./out/extension" ,
30- "contributes" : {
31- "commands" : [
32- {
33- "command" : " syntaxTree.start" ,
34- "title" : " Syntax Tree: Start"
35- },
36- {
37- "command" : " syntaxTree.stop" ,
38- "title" : " Syntax Tree: Stop"
39- },
40- {
41- "command" : " syntaxTree.restart" ,
42- "title" : " Syntax Tree: Restart"
43- },
44- {
45- "command" : " syntaxTree.clearOutputChannel" ,
46- "title" : " Syntax Tree: Clear Output Channel"
47- },
48- {
49- "command" : " syntaxTree.showOutputChannel" ,
50- "title" : " Syntax Tree: Show Output Channel"
51- },
52- {
53- "command" : " syntaxTree.visualize" ,
54- "title" : " Syntax Tree: Visualize"
55- }
56- ],
57- "configuration" : {
58- "type" : " object" ,
59- "title" : " Syntax Tree" ,
60- "properties" : {
61- "syntaxTree.singleQuotes" : {
62- "default" : false ,
63- "markdownDescription" : " Uses single-quoted strings when possible." ,
64- "type" : " boolean"
65- },
66- "syntaxTree.trailingComma" : {
67- "default" : false ,
68- "markdownDescription" : " Adds a trailing comma to multi-line array literals, hash literals, and method parameters." ,
69- "type" : " boolean"
70- },
71- "syntaxTree.additionalPlugins" : {
72- "default" : [],
73- "markdownDescription" : " Registers [extra behaviors](https://github.com/ruby-syntax-tree/syntax_tree#plugins) with the language server." ,
74- "items" : {
75- "type" : " string"
76- },
77- "type" : " array"
78- }
79- }
80- },
81- "colors" : []
82- },
83- "scripts" : {
84- "clean" : " rm -Rf out" ,
85- "compile" : " tsc -p ./" ,
86- "package" : " vsce package --yarn --githubBranch main" ,
87- "publish" : " vsce publish --yarn --githubBranch main" ,
88- "vscode:prepublish" : " yarn compile" ,
89- "test" : " node ./out/test/runTest.js" ,
90- "watch" : " tsc --watch -p ./"
91- },
92- "dependencies" : {
93- "vscode-languageclient" : " 8.0.2-next.5"
94- },
95- "devDependencies" : {
96- "@types/glob" : " ^7.1.1" ,
97- "@types/mocha" : " ^9.1.1" ,
98- "@types/node" : " ^18.0.0" ,
99- "@types/vscode" : " ^1.68.0" ,
100- "@vscode/test-electron" : " ^1.6.1" ,
101- "glob" : " ^7.1.4" ,
102- "mocha" : " ^9.1.1" ,
103- "typescript" : " ^4.7.4" ,
104- "vsce" : " ^2.9.2"
105- }
106- }
2+ "name" : " vscode-syntax-tree" ,
3+ "displayName" : " Syntax Tree" ,
4+ "description" : " VSCode support for the syntax_tree gem" ,
5+ "icon" : " doc/logo.png" ,
6+ "version" : " 0.2.1" ,
7+ "publisher" : " ruby-syntax-tree" ,
8+ "repository" : {
9+ "type" : " git" ,
10+ "url" : " https://github.com/ruby-syntax-tree/vscode-syntax-tree.git"
11+ },
12+ "license" : " MIT" ,
13+ "bugs" : {
14+ "url" : " https://github.com/ruby-syntax-tree/vscode-syntax-tree/issues"
15+ },
16+ "packageManager" : " yarn@1.22.19" ,
17+ "engines" : {
18+ "vscode" : " ^1.66.0"
19+ },
20+ "activationEvents" : [
21+ " onLanguage:ruby" ,
22+ " workspaceContains:Gemfile.lock" ,
23+ " onCommand:syntaxTree.start" ,
24+ " onCommand:syntaxTree.stop" ,
25+ " onCommand:syntaxTree.restart" ,
26+ " onCommand:syntaxTree.showOutputChannel" ,
27+ " onCommand:syntaxTree.visualize"
28+ ],
29+ "main" : " ./out/extension" ,
30+ "contributes" : {
31+ "commands" : [
32+ {
33+ "command" : " syntaxTree.start" ,
34+ "title" : " Syntax Tree: Start"
35+ },
36+ {
37+ "command" : " syntaxTree.stop" ,
38+ "title" : " Syntax Tree: Stop"
39+ },
40+ {
41+ "command" : " syntaxTree.restart" ,
42+ "title" : " Syntax Tree: Restart"
43+ },
44+ {
45+ "command" : " syntaxTree.showOutputChannel" ,
46+ "title" : " Syntax Tree: Show Output Channel"
47+ },
48+ {
49+ "command" : " syntaxTree.visualize" ,
50+ "title" : " Syntax Tree: Visualize"
51+ }
52+ ],
53+ "configuration" : {
54+ "type" : " object" ,
55+ "title" : " Syntax Tree" ,
56+ "properties" : {
57+ "syntaxTree.singleQuotes" : {
58+ "default" : false ,
59+ "markdownDescription" : " Uses single-quoted strings when possible." ,
60+ "type" : " boolean"
61+ },
62+ "syntaxTree.trailingComma" : {
63+ "default" : false ,
64+ "markdownDescription" : " Adds a trailing comma to multi-line array literals, hash literals, and method parameters." ,
65+ "type" : " boolean"
66+ },
67+ "syntaxTree.additionalPlugins" : {
68+ "default" : [],
69+ "markdownDescription" : " Registers [extra behaviors](https://github.com/ruby-syntax-tree/syntax_tree#plugins) with the language server." ,
70+ "items" : {
71+ "type" : " string"
72+ },
73+ "type" : " array"
74+ }
75+ }
76+ },
77+ "colors" : []
78+ },
79+ "scripts" : {
80+ "clean" : " rm -Rf out" ,
81+ "compile" : " tsc -p ./" ,
82+ "package" : " vsce package --yarn --githubBranch main" ,
83+ "publish" : " vsce publish --yarn --githubBranch main" ,
84+ "vscode:prepublish" : " yarn compile" ,
85+ "test" : " node ./out/test/runTest.js" ,
86+ "watch" : " tsc --watch -p ./"
87+ },
88+ "dependencies" : {
89+ "vscode-languageclient" : " 8.0.2-next.5"
90+ },
91+ "devDependencies" : {
92+ "@types/glob" : " ^7.1.1" ,
93+ "@types/mocha" : " ^9.1.1" ,
94+ "@types/node" : " ^18.0.0" ,
95+ "@types/vscode" : " ^1.68.0" ,
96+ "@vscode/test-electron" : " ^1.6.1" ,
97+ "glob" : " ^7.1.4" ,
98+ "mocha" : " ^9.1.1" ,
99+ "typescript" : " ^4.7.4" ,
100+ "vsce" : " ^2.9.2"
101+ },
102+ "__metadata" : {
103+ "id" : " b46118f9-0f6f-4320-9e2e-75c96492b4cb" ,
104+ "publisherDisplayName" : " ruby-syntax-tree" ,
105+ "publisherId" : " 63942dce-de09-44d8-b863-4a1dbd5508c6" ,
106+ "isPreReleaseVersion" : false
107+ }
108+ }
0 commit comments