This repository has been archived by the owner on May 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
75 lines (75 loc) · 2.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "vscode-swift-language",
"displayName": "Swift",
"description": "Swift language integration, through SourceKit, for VS Code.",
"icon": "images/Swift_logo.png",
"bugs": {
"url": "https://github.com/RLovelett/vscode-swift/issues"
},
"homepage": "https://github.com/RLovelett/vscode-swift/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/RLovelett/vscode-swift.git"
},
"license": "SEE LICENSE IN LICENSE",
"version": "0.2.0",
"publisher": "rlovelett",
"author": {
"name": "Ryan Lovelett",
"email": "[email protected]",
"url": "https://github.com/RLovelett"
},
"contributors": [
{
"name": "Aaron Crespo",
"email": "[email protected]",
"url": "https://github.com/aaroncrespo"
}
],
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Languages"
],
"keywords": [
"Swift",
"SourceKit",
"SourceKitten",
"completion",
"documentation"
],
"preview": true,
"activationEvents": [
"onLanguage:swift"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Swift Extension Configuration",
"properties": {
"swift.languageServerPath": {
"type": "string",
"default": "/usr/local/bin/LanguageServer",
"description": "The fully qualified path to the Swift Language Server executable."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.14.2",
"mocha": "^5.2.0",
"typescript": "^2.9.2",
"vscode": "^1.1.26"
},
"dependencies": {
"vscode-languageclient": "^3.5.1"
}
}