1
1
{
2
- "name" : " applescript" ,
3
- "displayName" : " AppleScript" ,
4
- "description" : " Language syntax and snippets for AppleScript" ,
5
- "version" : " 0.1.3 " ,
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
- ],
35
- "activationEvents" : [
36
- " onLanguage:applescript"
37
- ],
38
- "contributes" : {
39
- "commands" : [
40
- {
41
- "command" : " extension.applescript.run" ,
42
- "title" : " AppleScript: Run Script"
43
- },
44
- {
45
- "command" : " extension.applescript.compile" ,
46
- "title" : " AppleScript: Compile Script"
47
- },
48
- {
49
- "command" : " extension.applescript.compileBundle" ,
50
- "title" : " AppleScript: Compile Script bundle"
51
- },
52
- {
53
- "command" : " extension.applescript.compileApp" ,
54
- "title" : " AppleScript: Compile Application"
55
- }
56
- ],
57
- "languages" : [
58
- {
59
- "id" : " applescript" ,
60
- "aliases" : [
61
- " AppleScript" ,
62
- " applescript"
63
- ],
64
- "extensions" : [
65
- " .applescript"
66
- ],
67
- "configuration" : " ./applescript.configuration.json"
68
- }
69
- ],
70
- "grammars" : [
71
- {
72
- "language" : " applescript" ,
73
- "scopeName" : " source.applescript" ,
74
- "path" : " ./syntaxes/applescript.tmLanguage"
75
- }
76
- ],
77
- "snippets" : [
78
- {
79
- "language" : " applescript" ,
80
- "path" : " ./snippets/applescript.json"
81
- }
82
- ]
83
- },
84
- "scripts" : {
85
- "postinstall" : " node ./node_modules/vscode/bin/install" ,
86
- "test" : " gulp lint"
87
- },
88
- "devDependencies" : {
89
- "gulp" : " ^3.9.1" ,
90
- "gulp-debug" : " ^2.1.2" ,
91
- "gulp-json-lint" : " ^0.1.0" ,
92
- "gulp-xml-validator" : " ^0.1.1" ,
93
- "gulp-yaml-validate" : " ^1.0.2" ,
94
- "vscode" : " ^0.11.0"
95
- },
96
- "__metadata" : {
97
- "id" : " d57cfcbb-5746-48be-a607-96967331a91c" ,
98
- "publisherId" : " d142cf02-af52-4395-9363-148909445cb3" ,
99
- "publisherDisplayName" : " idleberg"
100
- }
2
+ "name" : " applescript" ,
3
+ "displayName" : " AppleScript" ,
4
+ "description" : " Language syntax and snippets for AppleScript" ,
5
+ "version" : " 0.2.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"
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
+ ],
35
+ "activationEvents" : [
36
+ " onLanguage:applescript"
37
+ ],
38
+ "contributes" : {
39
+ "commands" : [
40
+ {
41
+ "command" : " extension.applescript.run" ,
42
+ "title" : " AppleScript: Run Script"
43
+ },
44
+ {
45
+ "command" : " extension.applescript.compile" ,
46
+ "title" : " AppleScript: Compile Script"
47
+ },
48
+ {
49
+ "command" : " extension.applescript.compileBundle" ,
50
+ "title" : " AppleScript: Compile Script bundle"
51
+ },
52
+ {
53
+ "command" : " extension.applescript.compileApp" ,
54
+ "title" : " AppleScript: Compile Application"
55
+ }
56
+ ],
57
+ "languages" : [
58
+ {
59
+ "id" : " applescript" ,
60
+ "aliases" : [
61
+ " AppleScript" ,
62
+ " applescript"
63
+ ],
64
+ "extensions" : [
65
+ " .applescript"
66
+ ],
67
+ "configuration" : " ./applescript.configuration.json"
68
+ }
69
+ ],
70
+ "grammars" : [
71
+ {
72
+ "language" : " applescript" ,
73
+ "scopeName" : " source.applescript" ,
74
+ "path" : " ./syntaxes/applescript.tmLanguage"
75
+ }
76
+ ],
77
+ "snippets" : [
78
+ {
79
+ "language" : " applescript" ,
80
+ "path" : " ./snippets/applescript.json"
81
+ }
82
+ ]
83
+ },
84
+ "scripts" : {
85
+ "postinstall" : " node ./node_modules/vscode/bin/install" ,
86
+ "test" : " gulp lint"
87
+ },
88
+ "devDependencies" : {
89
+ "gulp" : " ^3.9.1" ,
90
+ "gulp-debug" : " ^2.1.2" ,
91
+ "gulp-json-lint" : " ^0.1.0" ,
92
+ "gulp-xml-validator" : " ^0.1.1" ,
93
+ "gulp-yaml-validate" : " ^1.0.2" ,
94
+ "vscode" : " ^0.11.0"
95
+ },
96
+ "__metadata" : {
97
+ "id" : " d57cfcbb-5746-48be-a607-96967331a91c" ,
98
+ "publisherId" : " d142cf02-af52-4395-9363-148909445cb3" ,
99
+ "publisherDisplayName" : " idleberg"
100
+ }
101
101
}
0 commit comments