This repository has been archived by the owner on Dec 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 2.19 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "vscode-swift",
"displayName": "Swift for Visual Studio Code",
"description": "Provides rich language support for Swift PM projects in Visual Studio Code.",
"author": "David Owens II",
"license": "MIT",
"version": "0.8.0",
"publisher": "kiadstudios",
"preview": true,
"repository": {
"type": "git",
"url": "https://github.com/owensd/vscode-swift"
},
"engines": {
"vscode": "^1.8.0"
},
"categories": [
"Languages",
"Snippets"
],
"activationEvents": [
"onLanguage:swift"
],
"keywords": [
"swift", "ios", "macos", "apple", "ide"
],
"main": "./out/src/extension",
"files": [
"CHANGELOG.md",
"images/**",
"node_modules/**",
"out/**",
"package.json",
"README.md",
"snippets/**",
"syntaxes/**"
],
"contributes": {
"languages": [{
"id": "swift",
"extension": [".swift"]
}],
"grammars": [{
"language": "swift",
"scopeName": "source.swift",
"path": "./syntaxes/swift.tmLanguage"
}],
"snippets": [{
"language": "swift",
"path": "./snippets/snippets.json"
}],
"configuration": {
"type": "object",
"title": "Swift Language Server Configuration",
"properties": {
"swift.languageServerPath": {
"type": "string",
"default": "lib/usr/bin/langsrv",
"description": "The path to the Swift Language Server utility."
},
"swift.enableLanguageServer": {
"type": "bool",
"default": true,
"description": "Option to turn off the language server."
},
"swift.enableSwiftBugLinks": {
"type": "bool",
"default": true,
"description": "Option to turn off Swift JIRA but linking."
},
"swift.toolchainPath": {
"type": "string",
"default": null,
"description": "The toolchain path for the version of Swift to be used."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.52",
"typescript": "^2.1.5",
"vscode": "^1.0.3"
},
"dependencies": {
"vscode-languageclient": "^3.1.0",
"unzip": "^0.1.11",
"request": "^2.81.0"
}
}