11{
2- "name" : " applescript" ,
3- "displayName" : " AppleScript" ,
4- "description" : " Language syntax, snippets and build system for AppleScript" ,
5- "version" : " 0.5.2" ,
6- "publisher" : " idleberg" ,
7- "license" : " MIT" ,
8- "author" : {
9- "name" : " Jan T. Sott" ,
10- "url" : " http://github.com/idleberg"
11- },
12- "keywords" : [
13- " apple" ,
14- " applescript" ,
15- " macos" ,
16- " build"
17- ],
18- "repository" : {
19- "type" : " git" ,
20- "url" : " git+https://github.com/idleberg/vscode-applescript.git"
21- },
22- "homepage" : " https://github.com/idleberg/vscode-applescript" ,
23- "bugs" : {
24- "url" : " https://github.com/idleberg/vscode-applescript/issues"
25- },
26- "main" : " ./lib/main" ,
27- "icon" : " images/logo.svg" ,
28- "engines" : {
29- "vscode" : " ^1.0.0"
30- },
31- "categories" : [
32- " Languages" ,
33- " Snippets" ,
34- " Other"
35- ],
36- "activationEvents" : [
37- " onLanguage:applescript"
38- ],
39- "contributes" : {
40- "configuration" : {
41- "type" : " object" ,
42- "title" : " AppleScript" ,
43- "properties" : {
44- "applescript.showNotifications" : {
45- "type" : " boolean" ,
46- "default" : true ,
47- "description" : " Show build notifications indicating success or failure"
48- },
49- "applescript.alwaysShowOutput" : {
50- "type" : " boolean" ,
51- "default" : false ,
52- "description" : " If `false` the output channel will only be shown on errors"
53- }
54- }
2+ "name" : " applescript" ,
3+ "displayName" : " AppleScript" ,
4+ "description" : " Language syntax, snippets and build system for AppleScript" ,
5+ "version" : " 0.5.3" ,
6+ "publisher" : " idleberg" ,
7+ "license" : " MIT" ,
8+ "author" : {
9+ "name" : " Jan T. Sott" ,
10+ "url" : " http://github.com/idleberg"
5511 },
56- "commands" : [
57- {
58- "command" : " extension.applescript.run" ,
59- "title" : " AppleScript: Run Script"
60- },
61- {
62- "command" : " extension.applescript.compile" ,
63- "title" : " AppleScript: Compile Script"
64- },
65- {
66- "command" : " extension.applescript.compileBundle" ,
67- "title" : " AppleScript: Compile Script bundle"
68- },
69- {
70- "command" : " extension.applescript.compileApp" ,
71- "title" : " AppleScript: Compile Application"
72- }
12+ "keywords" : [
13+ " apple" ,
14+ " applescript" ,
15+ " macos" ,
16+ " build"
7317 ],
74- "keybindings" : [
75- {
76- "key" : " shift+alt+b" ,
77- "when" : " editorFocus && editorLangId == applescript" ,
78- "command" : " extension.applescript.compile"
79- },
80- {
81- "key" : " shift+alt+r" ,
82- "when" : " editorFocus && editorLangId == applescript" ,
83- "command" : " extension.applescript.run"
84- }
18+ "repository" : {
19+ "type" : " git" ,
20+ "url" : " git+https://github.com/idleberg/vscode-applescript.git"
21+ },
22+ "homepage" : " https://github.com/idleberg/vscode-applescript" ,
23+ "bugs" : {
24+ "url" : " https://github.com/idleberg/vscode-applescript/issues"
25+ },
26+ "main" : " ./lib/main" ,
27+ "icon" : " images/logo.svg" ,
28+ "engines" : {
29+ "vscode" : " ^1.0.0"
30+ },
31+ "categories" : [
32+ " Languages" ,
33+ " Snippets" ,
34+ " Other"
8535 ],
86- "languages" : [
87- {
88- "id" : " applescript" ,
89- "aliases" : [
90- " AppleScript" ,
91- " applescript"
36+ "activationEvents" : [
37+ " onLanguage:applescript"
38+ ],
39+ "contributes" : {
40+ "configuration" : {
41+ "type" : " object" ,
42+ "title" : " AppleScript" ,
43+ "properties" : {
44+ "applescript.showNotifications" : {
45+ "type" : " boolean" ,
46+ "default" : true ,
47+ "description" : " Show build notifications indicating success or failure"
48+ },
49+ "applescript.alwaysShowOutput" : {
50+ "type" : " boolean" ,
51+ "default" : false ,
52+ "description" : " If `false` the output channel will only be shown on errors"
53+ }
54+ }
55+ },
56+ "commands" : [
57+ {
58+ "command" : " extension.applescript.run" ,
59+ "title" : " AppleScript: Run Script"
60+ },
61+ {
62+ "command" : " extension.applescript.compile" ,
63+ "title" : " AppleScript: Compile Script"
64+ },
65+ {
66+ "command" : " extension.applescript.compileBundle" ,
67+ "title" : " AppleScript: Compile Script bundle"
68+ },
69+ {
70+ "command" : " extension.applescript.compileApp" ,
71+ "title" : " AppleScript: Compile Application"
72+ }
9273 ],
93- "extensions" : [
94- " .applescript"
74+ "keybindings" : [
75+ {
76+ "key" : " shift+alt+b" ,
77+ "when" : " editorFocus && editorLangId == applescript" ,
78+ "command" : " extension.applescript.compile"
79+ },
80+ {
81+ "key" : " shift+alt+r" ,
82+ "when" : " editorFocus && editorLangId == applescript" ,
83+ "command" : " extension.applescript.run"
84+ }
9585 ],
96- "configuration" : " ./applescript.configuration.json"
97- }
98- ],
99- "grammars" : [
100- {
101- "language" : " applescript" ,
102- "scopeName" : " source.applescript" ,
103- "path" : " ./syntaxes/applescript.tmLanguage"
104- }
105- ],
106- "snippets" : [
107- {
108- "language" : " applescript" ,
109- "path" : " ./snippets/applescript.json"
110- }
111- ]
112- },
113- "scripts" : {
114- "postinstall" : " node ./node_modules/log-smith/bin/cli > CHANGELOG.md && node ./node_modules/vscode/bin/install" ,
115- "test" : " gulp lint"
116- },
117- "dependencies" : {
118- "log-smith" : " ^0.2.0"
119- },
120- "devDependencies" : {
121- "babel-eslint" : " ^7.1.1" ,
122- "eslint" : " ^3.17.1" ,
123- "gulp" : " github:gulpjs/gulp#4.0" ,
124- "gulp-debug" : " ^3.1.0" ,
125- "gulp-eslint" : " ^3.0.1" ,
126- "gulp-jsonlint" : " ^1.2.0" ,
127- "gulp-xml-validator" : " ^0.1.2" ,
128- "vscode" : " ^1.1.0"
129- }
130- }
86+ "languages" : [
87+ {
88+ "id" : " applescript" ,
89+ "aliases" : [
90+ " AppleScript" ,
91+ " applescript"
92+ ],
93+ "extensions" : [
94+ " .applescript"
95+ ],
96+ "configuration" : " ./applescript.configuration.json"
97+ }
98+ ],
99+ "grammars" : [
100+ {
101+ "language" : " applescript" ,
102+ "scopeName" : " source.applescript" ,
103+ "path" : " ./syntaxes/applescript.tmLanguage"
104+ }
105+ ],
106+ "snippets" : [
107+ {
108+ "language" : " applescript" ,
109+ "path" : " ./snippets/applescript.json"
110+ }
111+ ]
112+ },
113+ "scripts" : {
114+ "postinstall" : " node ./node_modules/log-smith/bin/cli > CHANGELOG.md && node ./node_modules/vscode/bin/install" ,
115+ "test" : " gulp lint"
116+ },
117+ "dependencies" : {
118+ "log-smith" : " ^0.2.0"
119+ },
120+ "devDependencies" : {
121+ "babel-eslint" : " ^7.1.1" ,
122+ "eslint" : " ^3.17.1" ,
123+ "gulp" : " github:gulpjs/gulp#4.0" ,
124+ "gulp-debug" : " ^3.1.0" ,
125+ "gulp-eslint" : " ^3.0.1" ,
126+ "gulp-jsonlint" : " ^1.2.0" ,
127+ "gulp-xml-validator" : " ^0.1.2" ,
128+ "vscode" : " ^1.1.0"
129+ }
130+ }
0 commit comments