1
1
{
2
- "name" : " applescript" ,
3
- "displayName" : " AppleScript" ,
4
- "description" : " Language syntax, snippets and build system for AppleScript" ,
5
- "version" : " 0.4.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.0" ,
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"
55
21
},
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
- }
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"
73
35
],
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
- }
36
+ "activationEvents" : [
37
+ " onLanguage:applescript"
85
38
],
86
- "languages" : [
87
- {
88
- "id" : " applescript" ,
89
- "aliases" : [
90
- " AppleScript" ,
91
- " applescript"
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
+ }
92
73
],
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
+ }
95
85
],
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/vscode/bin/install && node ./node_modules/log-smith/bin/cli > CHANGELOG.md" ,
115
- "test" : " gulp lint"
116
- },
117
- "devDependencies" : {
118
- "babel-eslint" : " ^7.1.1" ,
119
- "eslint" : " ^3.17.1" ,
120
- "gulp" : " github:gulpjs/gulp#4.0" ,
121
- "gulp-debug" : " ^3.1.0" ,
122
- "gulp-eslint" : " ^3.0.1" ,
123
- "gulp-jsonlint" : " ^1.2.0" ,
124
- "gulp-xml-validator" : " ^0.1.2" ,
125
- "vscode" : " ^1.1.0"
126
- }
127
- }
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/vscode/bin/install && node ./node_modules/log-smith/bin/cli > CHANGELOG.md" ,
115
+ "test" : " gulp lint"
116
+ },
117
+ "devDependencies" : {
118
+ "babel-eslint" : " ^7.1.1" ,
119
+ "eslint" : " ^3.17.1" ,
120
+ "gulp" : " github:gulpjs/gulp#4.0" ,
121
+ "gulp-debug" : " ^3.1.0" ,
122
+ "gulp-eslint" : " ^3.0.1" ,
123
+ "gulp-jsonlint" : " ^1.2.0" ,
124
+ "gulp-xml-validator" : " ^0.1.2" ,
125
+ "vscode" : " ^1.1.0"
126
+ }
127
+ }
0 commit comments