This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
96 lines (96 loc) · 2.44 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": "coc-sourcekit",
"version": "0.0.2",
"description": "sourcekit extension for coc",
"author": "Klaas Pieter Annema <kp@annema.me",
"license": "MIT",
"main": "lib/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/klaaspieter/coc-sourcekit.git"
},
"engines": {
"coc": "^0.0.73"
},
"keywords": [
"coc.nvim",
"languageserver",
"swift",
"vim",
"neovim"
],
"scripts": {
"clean": "rimraf lib",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc --watch -p tsconfig.json",
"prepare": "yarn clean && yarn build",
"link:add": "node ./scripts/link.js add",
"link:remove": "node ./scripts/link.js remove",
"lint": "eslint . --ext .ts,.js"
},
"activationEvents": [
"onLanguage:swift"
],
"contributes": {
"configuration": {
"type": "object",
"title": "sourcekit",
"properties": {
"sourcekit.enable": {
"type": "boolean",
"default": true,
"description": "Enable SourceKit extension"
},
"sourcekit.commandPath": {
"type": "string"
},
"sourcekit.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"verbose"
],
"description": "Trace the communication between coc and the sourcekit language server"
},
"sourcekit.sdkPath": {
"type": "string",
"default": "",
"description": "The path to the desired SDK"
},
"sourcekit.sdk": {
"type": "string",
"default": "",
"description": "The name of the SDK to use"
},
"sourcekit.targetArch": {
"type": "string",
"default": "",
"description": "The name of the target to generate code"
},
"sourcekit.args": {
"type": "array",
"default": [],
"description": "Extra arguments to pass to the lsp"
},
"sourcekit.env": {
"type": "object",
"default": {},
"description": "The environment variables for the lsp"
}
}
}
},
"devDependencies": {
"@types/node": "^12.12.8",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"coc.nvim": "0.0.74",
"eslint": "^6.6.0",
"rimraf": "^3.0.0",
"typescript": "3.6.2"
},
"dependencies": {
"tslib": "^1.9.3"
}
}